md filename=index.md


index.md

index.md

index.md

fld1 fld2 fld3
val11 val12 val13
val21 val22 val23
val31 val32 val33
val41 val42 val43

obsidian plugins: python scripter calendar fantasy calendar dataview nginx php markdown

[[https://stackoverflow.com/questions/69595539/how-to-get-some-markdown-from-an-external-resource-and-render-it-to-an-html-page]]

const md = window.markdownit();

fetch('https://raw.githubusercontent.com/markdown-it/markdown-it/master/README.md')
  .then((response) => response.text())
  .then((text) => {
    document.getElementById('output').innerHTML = md.render(text);
  })
<link href="https://unpkg.com/@picocss/pico@1.3.3/css/pico.slim.min.css" rel="stylesheet"/>
<div id="output"></div>
<script src="https://unpkg.com/markdown-it@8.4.2/dist/markdown-it.min.js"></script>