Skip to content

Commit e7cdebc

Browse files
fix: parse tag attribitues as properties correctly
1 parent 44ba2f7 commit e7cdebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DocsParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class DocsParser {
200200
// ## Methods
201201
methods: parseMethodBlocks(findContentInsideHeader(tokens, 'Methods', 2)),
202202
// ## Properties
203-
properties: parsePropertyBlocks(findContentInsideHeader(tokens, 'Properties', 2)),
203+
properties: parsePropertyBlocks(findContentInsideHeader(tokens, 'Tag Attributes', 2)),
204204
// ## Events
205205
events: parseEventBlocks(findContentInsideHeader(tokens, 'DOM Events', 2)),
206206
});

0 commit comments

Comments
 (0)