Skip to content

mtsgi/writedown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e44bf64 · Jun 28, 2020

History

10 Commits
Jun 19, 2020
May 4, 2020
Jun 19, 2020
May 18, 2020
May 6, 2020
May 6, 2020
Jun 19, 2020
Jun 19, 2020
May 6, 2020

Repository files navigation

Writedown↓

MIT License GitHub tag (latest by date) npm npm bundle size

Writing html will be more fun!

kaf.js

Example

<body #root>
  <header>
    <a .header-logo>Writedown</a>
  </header>
  <div .message.green>
    This is example of
    <span #wd>writedown</span>!
  </div>
  <button .button #ok>
    OK
  </button>
</body>

<body id="root">
  <header>
    <a class="header-logo">Writedown</a>
  </header>
  <div class="message green">
    This is example of
    <span id="wd">writedown</span>!
  </div>
  <button class="button" id="ok">
    OK
  </button>
</body>

Usage

There are two ways to initialize Writedown.

<script src="https://cdn.jsdelivr.net/gh/mtsgi/writedown@master/writedown.js"></script>

or

<script type="module">
  import * as wd from "../wd.js";
  wd.init('.wd');
  // You can init Writedown for the specific element in this way
  // This also works: wd.init(document.querySelector('.wd'))
</script>