Merge pull request #559 from alanhdu/patch-1

Add <details> to recognized HTML5 block tags
This commit is contained in:
Russ Ross 2020-02-18 16:49:12 -07:00 committed by GitHub
commit 41c5fccfd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -132,6 +132,7 @@ var blockTags = map[string]struct{}{
"article": {},
"aside": {},
"canvas": {},
"details": {},
"figcaption": {},
"figure": {},
"footer": {},
@ -142,6 +143,7 @@ var blockTags = map[string]struct{}{
"output": {},
"progress": {},
"section": {},
"summary": {},
"video": {},
}