Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 474 Bytes

ax.md

File metadata and controls

26 lines (21 loc) · 474 Bytes

Index

Call ax() to render content.

ax('Hello, world!');
let element = ax.element('Hello, world!');
document.body.appendChild(element);
let element = ax.element.create({$tag: 'h1', $text: 'Hello, world!'})
ax.insert(element);