all repos — h3 @ 4464d44ebbaab35fdc35568d2033af7d4de0238c

A tiny, extremely minimalist JavaScript microframework.

Merge branch 'master' of https://github.com/h3rald/h3
h3rald h3rald@h3rald.com
Mon, 20 Apr 2020 13:25:33 +0200
commit

4464d44ebbaab35fdc35568d2033af7d4de0238c

parent

b623b80f8fdd1c1170b10ad4c2df8617ee4e1d7c

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>