md_parser_wasm 0.3.5

A markdown parser written in Rust and compiled to WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
<script lang="ts">
  let count: number = 0
  const increment = () => {
    count += 1
  }
</script>

<button on:click={increment}>
  count is {count}
</button>