Skip to content
This repository was archived by the owner on Mar 24, 2022. It is now read-only.

Commit 06311ed

Browse files
committed
chore: Revert unnecessary changes
1 parent 32c955b commit 06311ed

File tree

3 files changed

+896
-1699
lines changed

3 files changed

+896
-1699
lines changed

docs/version-history.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ Location info property name added by currently implemented tree adapters has bee
3838
[startCol](https://github.com/inikulin/parse5/blob/master/packages/parse5/docs/source-code-location/location.md#startcol)
3939
respectively.
4040

41-
* Updated (**breaking**): `SAXParser` now passes token objects to event handlers instead of separate arguments. See [SAXParser documentation](https://github.com/inikulin/parse5/blob/master/packages/sax-parser/docs/index.md) for more info.
41+
* Updated (**breaking**): `SAXParser` now passes token objects to event handlers instead of separate arguments. See [SAXParser documentation](https://github.com/inikulin/parse5/blob/master/packages/parse5-sax-parser/docs/index.md) for more info.
4242
(GH [#247](https://github.com/inikulin/parse5/issues/247)).
4343

4444
* Added: [endLine](https://github.com/inikulin/parse5/blob/master/packages/parse5/docs/source-code-location/location.md#endline) and [endCol](https://github.com/inikulin/parse5/blob/master/packages/parse5/docs/source-code-location/location.md#endcol) location info
4545
properties.
4646

4747
* Added: [scriptingEnabled](https://github.com/inikulin/parse5/blob/master/packages/parse5/docs/options/parser-options.md#scriptingenabled) flag to the `ParserOptions` which controls how `<noscript>` tags are handled by the parser. (GH [#192](https://github.com/inikulin/parse5/issues/192)).
4848

49-
* Added: [HTML rewriting stream](https://github.com/inikulin/parse5/tree/master/packages/html-rewriting-stream#readme).
49+
* Added: [HTML rewriting stream](https://github.com/inikulin/parse5/tree/master/packages/parse5-html-rewriting-stream#readme).
5050
(GH [#222](https://github.com/inikulin/parse5/issues/222)).
5151

5252
* Removed (**breaking**): `parse5` no longer ship TypeScript definitions. Existing TypeScript definitions

packages/parse5-html-rewriting-stream/docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Raised when the rewriter encounters a start tag.
2222
| Param | Type |
2323
| ------ | ------ |
2424
| event | "startTag" |
25-
| listener | function (startTag: *[StartTagToken](../../sax-parser/docs/tokens/start-tag.md)*, rawHtml: *String*) |
25+
| listener | function (startTag: *[StartTagToken](../../parse5-sax-parser/docs/tokens/start-tag.md)*, rawHtml: *String*) |
2626

2727
**Returns:** `this`
2828

@@ -40,7 +40,7 @@ Raised when rewriter encounters an end tag.
4040
| Param | Type |
4141
| ------ | ------ |
4242
| event | "endTag" |
43-
| listener | function (endTag: *[EndTagToken](../../sax-parser/docs/tokens/end-tag.md)*, rawHtml: *String*) |
43+
| listener | function (endTag: *[EndTagToken](../../parse5-sax-parser/docs/tokens/end-tag.md)*, rawHtml: *String*) |
4444

4545
**Returns:** `this`
4646

@@ -58,7 +58,7 @@ Raised when rewriter encounters a comment.
5858
| Param | Type |
5959
| ------ | ------ |
6060
| event | "comment" |
61-
| listener | function (comment: *[CommentToken](../../sax-parser/docs/tokens/comment.md)*, rawHtml: *String*) |
61+
| listener | function (comment: *[CommentToken](../../parse5-sax-parser/docs/tokens/comment.md)*, rawHtml: *String*) |
6262

6363
**Returns:** `this`
6464

@@ -76,7 +76,7 @@ Raised when rewriter encounters text content.
7676
| Param | Type |
7777
| ------ | ------ |
7878
| event | "text" |
79-
| listener | function (text: *[TextToken](../../sax-parser/docs/tokens/text.md)*, rawHtml: *String*)|
79+
| listener | function (text: *[TextToken](../../parse5-sax-parser/docs/tokens/text.md)*, rawHtml: *String*)|
8080

8181
**Returns:** `this`
8282

@@ -94,7 +94,7 @@ Raised when rewriter encounters a [document type declaration](https://en.wikiped
9494
| Param | Type |
9595
| ------ | ------ |
9696
| event | "doctype" |
97-
| listener | function (doctype: *[DoctypeToken](../../sax-parser/docs/tokens/doctype.md)*, rawHtml: *String*) |
97+
| listener | function (doctype: *[DoctypeToken](../../parse5-sax-parser/docs/tokens/doctype.md)*, rawHtml: *String*) |
9898

9999
**Returns:** `this`
100100

0 commit comments

Comments
 (0)