Use HTML / JSX as appropriate instead of 'markup'
This commit is contained in:
parent
360a68ad26
commit
134a3121cc
1 changed files with 3 additions and 3 deletions
|
|
@ -27,7 +27,7 @@ The easiest way to try out Mithril is to include it from a CDN, and follow this
|
||||||
|
|
||||||
Let's create an HTML file to follow along:
|
Let's create an HTML file to follow along:
|
||||||
|
|
||||||
```markup
|
```html
|
||||||
<body></body>
|
<body></body>
|
||||||
<script src="http://cdn.rawgit.com/lhorie/mithril.js/rewrite/mithril.js"></script>
|
<script src="http://cdn.rawgit.com/lhorie/mithril.js/rewrite/mithril.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -93,7 +93,7 @@ m("main", [
|
||||||
|
|
||||||
Note: If you prefer `<html>` syntax, [it's possible to use it via a Babel plugin](jsx.md).
|
Note: If you prefer `<html>` syntax, [it's possible to use it via a Babel plugin](jsx.md).
|
||||||
|
|
||||||
```markup
|
```jsx
|
||||||
// HTML syntax via Babel's JSX plugin
|
// HTML syntax via Babel's JSX plugin
|
||||||
<main>
|
<main>
|
||||||
<h1 class="title">My first app</h1>
|
<h1 class="title">My first app</h1>
|
||||||
|
|
@ -126,7 +126,7 @@ m.mount(root, Hello)
|
||||||
|
|
||||||
As you would expect, doing so creates this markup:
|
As you would expect, doing so creates this markup:
|
||||||
|
|
||||||
```markup
|
```html
|
||||||
<main>
|
<main>
|
||||||
<h1 class="title">My first app</h1>
|
<h1 class="title">My first app</h1>
|
||||||
<button>A button</button>
|
<button>A button</button>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue