Changing markup details to table.

master
Thomas Hintz 4 years ago
parent 294a783337
commit f496ef035f

@ -174,6 +174,13 @@ constructed of. What parts do you see here?
I see three parts: the name of the tag, the tag's properties, and its
children.
#+begin_example
|----------+-----------------------------|
| name | 'div', 'h1', 'input' |
| props | 'class', 'type', 'disabled' |
| children | <h1>, <input>, Hello |
#+end_example
#+BEGIN_SRC
tag name: 'div'
tag prop: 'class'

@ -40,6 +40,13 @@ To start with we need to create a data structure that both represents a DOM tree
I see three parts: the name of the tag, the tag's properties, and its children.
```
|----------+-----------------------------|
| name | 'div', 'h1', 'input' |
| props | 'class', 'type', 'disabled' |
| children | <h1>, <input>, Hello |
```
```
tag name: 'div'
tag prop: 'class'

Loading…
Cancel
Save