diff options
author | humanitiesNerd <catonano@gmail.com> | 2019-01-04 20:02:34 +0100 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2019-01-05 12:06:44 -0500 |
commit | e25ed2d5696077f22b4b1826590ab98112d04307 (patch) | |
tree | 712d20478bcaade9f48d915e72738f91054d9111 | |
parent | 1bfb38812389aa734191adfe5b79eb16edc60b70 (diff) |
reader: skribe: Add additional HTML 5 tags.
* haunt/skribe/utils.scm (h5 h6 section nav aside): New procedures.
-rw-r--r-- | haunt/skribe/utils.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/haunt/skribe/utils.scm b/haunt/skribe/utils.scm index 42be1f1..45a4ed3 100644 --- a/haunt/skribe/utils.scm +++ b/haunt/skribe/utils.scm @@ -29,7 +29,9 @@ #:export (post p blockquote em - h1 h2 h3 h4 + h1 h2 h3 h4 h5 h6 + section + nav aside code pre strong ul ol li dl dt dd anchor @@ -60,7 +62,9 @@ contents from METADATA+SXML." em strong code samp pre kbd var cite dfn abbr - h1 h2 h3 h4 + h1 h2 h3 h4 h5 h6 + section + nav aside ul ol li dl dt dd) (define (anchor text uri) |