From 2a25c034a9af23e2eef597e164c2908abde1882a Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 13 Jun 2017 20:14:51 +0200 Subject: [PATCH] Remove semi-colons and full-stops from list-item endings --- readme.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/readme.md b/readme.md index 04fa77c..0b5c4aa 100644 --- a/readme.md +++ b/readme.md @@ -74,15 +74,15 @@ Take a look at [`lib/handlers/`][handlers] for examples. ###### Note -* [`yaml`][mdast-yaml] and [`html`][mdast-html] nodes are ignored; -* [`position`][unist-position]s are properly patched; -* Unknown nodes with `children` are transformed to `div` elements; -* Unknown nodes with `value` are transformed to `text` nodes; -* If `node.data.hName` is set, it’s used as the HAST element’s tag-name; +* [`yaml`][mdast-yaml] and [`html`][mdast-html] nodes are ignored +* [`position`][unist-position]s are properly patched +* Unknown nodes with `children` are transformed to `div` elements +* Unknown nodes with `value` are transformed to `text` nodes +* If `node.data.hName` is set, it’s used as the HAST element’s tag-name * If `node.data.hProperties` is set, it’s mixed into the HAST element’s - properties; + properties * If `node.data.hChildren` is set, it’s used as the element’s HAST - children; + children ## Related