Fix docs building error caused by missing end tag (#8477)

This commit is contained in:
Justin Ma
2023-03-16 19:41:19 +08:00
committed by GitHub
parent 2579a827fc
commit e672689a76
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ To represent different types of entries different values must be written to this
1. Tag entry: `{tag: <tag name> attrs: {<attr name>: "<string value>" ...} content: [<entries>]}`
2. Comment entry: `{tag: '!' attrs: null content: "<comment string>"}`
3. Processing instruction (PI): `{tag: '?<pi name>' attrs: null content: "<pi content string>"}`
4. Text: `{tag: null attrs: null content: "<text>"}`. Or as plain "<text>" instead of record.
4. Text: `{tag: null attrs: null content: "<text>"}`. Or as plain `<text>` instead of record.
Additionally any field which is: empty record, empty list or null, can be omitted."#
}