Skip to content

Instantly share code, notes, and snippets.

View solsen-tl's full-sized avatar

Steven Olsen solsen-tl

View GitHub Profile
@solsen-tl
solsen-tl / gist:97678796fa831977b8e72105fc4c1398
Last active October 14, 2021 16:13 — forked from rodneyrehm/gist:40e7946c0cff68a31cea
Diagrams for Documentation

Some tools for diagrams in software documentation

Diagrams For Documentation

Obvious Choices

@solsen-tl
solsen-tl / widget.md
Last active October 14, 2021 16:15 — forked from AlexxNB/widget.md
Howto make no-depends widget on Svelte and load it on the page

Svelte

We should have at least three files: 'Widget.svelte', 'rollup.config.js' and 'package.json':

  1. Our widget Widget.svelte:
<script>
  export let name;
</script>