Merge branch 'master' of https://github.com/h3rald/h3
h3rald h3rald@h3rald.com
Mon, 20 Apr 2020 13:25:33 +0200
1 files changed,
6 insertions(+),
6 deletions(-)
jump to
M
docs/md/api.md
→
docs/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>