Skip to content

Commit 65ee207

Browse files
author
Jeff Escalante
committed
document PostHTML AST
1 parent e1436a7 commit 65ee207

File tree

1 file changed

+25
-7
lines changed

1 file changed

+25
-7
lines changed

README.md

+25-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/posthtml/posthtml-parser.svg?branch=master)](https://travis-ci.org/posthtml/posthtml-parser?branch=master)
44
[![Coverage Status](https://coveralls.io/repos/posthtml/posthtml-parser/badge.svg?branch=master)](https://coveralls.io/r/posthtml/posthtml-parser?branch=master)
55

6-
Parse HTML/XML to [PostHTMLTree](https://github.com/posthtml/posthtml#posthtml-json-tree-example).
6+
Parse HTML/XML to [PostHTML AST](https://github.com/posthtml/posthtml-parser#posthtml-ast-format).
77
More about [PostHTML](https://github.com/posthtml/posthtml#readme)
88

99
## Install
@@ -13,20 +13,20 @@ More about [PostHTML](https://github.com/posthtml/posthtml#readme)
1313
$ npm install posthtml-parser
1414
```
1515

16-
## Usage
16+
## Usage
1717

18-
#### input HTML
18+
#### Input HTML
1919
```html
2020
<a class="animals" href="#">
2121
<span class="animals__cat" style="background: url(cat.png)">Cat</span>
2222
</a>
2323
```
2424
```js
25-
var parser = require('posthtml-parser');
26-
var fs = require('fs');
27-
var html = fs.readFileSync('path/to/input.html').toString();
25+
const parser = require('posthtml-parser')
26+
const fs = require('fs')
27+
const html = fs.readFileSync('path/to/input.html').toString()
2828

29-
clonsole.log(parser(html)); // Look #Result PostHTMLTree
29+
console.log(parser(html)) // Logs a PostHTML AST
3030
```
3131

3232
#### input HTML
@@ -59,6 +59,24 @@ clonsole.log(parser(html)); // Look #Result PostHTMLTree
5959
}]
6060
```
6161

62+
## PostHTML AST Format
63+
64+
Any parser being used with PostHTML should return a standard PostHTML [Abstract Syntax Tree](https://www.wikiwand.com/en/Abstract_syntax_tree) (AST). Fortunately, this is a very easy format to produce and understand. The AST is an array that can contain strings and objects. Any strings represent plain text content to be written to the output. Any objects represent HTML tags.
65+
66+
Tag objects generally look something like this:
67+
68+
```js
69+
{
70+
tag: 'div',
71+
attrs: {
72+
class: 'foo'
73+
},
74+
content: ['hello world!']
75+
}
76+
```
77+
78+
Tag objects can contain three keys. The `tag` key takes the name of the tag as the value. This can include custom tags. The optional `attrs` key takes an object with key/value pairs representing the attributes of the html tag. A boolean attribute has an empty string as its value. Finally, the optional `content` key takes an array as its value, which is a PostHTML AST. In this manner, the AST is a tree that should be walked recursively.
79+
6280
## License
6381

6482
[MIT](LICENSE)

0 commit comments

Comments
 (0)