all repos — h3 @ e6dd4a2fe50ed5db540e10b5fde991c02b31589b

A tiny, extremely minimalist JavaScript microframework.

Fixed unicode arrows
Fabio Cevasco h3rald@h3rald.com
Mon, 20 Apr 2020 12:09:59 +0200
commit

e6dd4a2fe50ed5db540e10b5fde991c02b31589b

parent

2494ba28a8cc3cd9a3ed095fd7a1ea57f4ffa575

1 files changed, 6 insertions(+), 6 deletions(-)

jump to
M docs/md/api.mddocs/md/api.md

@@ -19,7 +19,7 @@ href: "#/test"

}, ["This is a ", h3("em", "test"), "link."]); ``` -🡇 +↓ ```html <a id="test-link" class="btn primary" href="#/test">

@@ -33,7 +33,7 @@ ```js

h3("div"); ``` -🡇 +↓ ```html <div></div>

@@ -45,7 +45,7 @@ ```js

h3("span", "This is a test"); ``` -🡇 +↓ ```html <span>This is a test</span>

@@ -61,7 +61,7 @@ h3("li", "And finally this.")

]); ``` -🡇 +↓ ```html <ol>

@@ -82,7 +82,7 @@ };

h3(TestComponent); ``` -🡇 +↓ ```html <button class="test">Show Alert</button>

@@ -97,7 +97,7 @@ const TestLi = (text) => h3("li.test", text);

h3("ul", ["A", "B", "C"].map(TestLi)); ``` -🡇 +↓ ```html <ul>