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');
}
}