Start with something simple
This is an inline code example sh go do a thing
.
Let's make it a block
sh go do a thing
Adding a javascript
as a language to get syntax highlighting
let thing = 'face';
let myElement = $('.my-element');
Now let's do something a bit more complex
With some different file types
import Controller from '@ember/controller';
import { action } from '@ember/object';
export default class BlogPostController extends Controller {
isExpanded = false
@action
toggleBody() {
this.toggleProperty('isExpanded');
}
}
With a diff:
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
+ this.route('about');
- this.route('face');
});
export default Router;