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'); } }
Typescript never hurts
import EmberRouter from '@ember/routing/router'; import config from './config/environment'; export default class Router extends EmberRouter { location = config.locationType; rootURL = config.rootURL; } Router.map(function() {});
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;
With a diff on the first line:
-import EmberRouter from '@ember/routing/router'; +import EmberRouter from '@embroider/router'; import config from './config/environment'; const Router = EmberRouter.extend({ location: config.locationType, rootURL: config.rootURL }); Router.map(function() { this.route('about'); }); export default Router;