Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# HTMLCrunch

A clean, simple and lightweight HTML parser.
A clean, simple, lightweight HTML parser.

## Features

Expand Down
6 changes: 0 additions & 6 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
/**
* A simple, lightweight HTML parser
*
* @module
*/

export { type Parser } from "@fcrozatier/monarch";
export {
booleanAttributes,
Expand Down
2 changes: 1 addition & 1 deletion parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ const attributeValue = alt(
);

/**
* Parsers an HTML attribute
* Parses an HTML attribute
*/
export const attribute: Parser<[string, string]> = alt<[string, string]>(
seq(
Expand Down