Skip to content
This repository has been archived by the owner on Sep 23, 2019. It is now read-only.

walze/dynamic-text-html

Repository files navigation

UNDER CONSTRUCTION

dynamic-text-html

Uses markdown in .md files to write HTML. You can also change the file extension.

Syntax

  • all syntax from marked are available
  • under construction

Examples

Text file model.md

{[
    Comments go here
]}

apogmdpaomdgpomaasdgpomasasodpmgmasopdg
apm
pdoggmaogmdapomdgpoam
pdgopdmg

[[cards]]

HTML result before

<div field="model">
  <div external="cards">
      <h1>cards external</h1>
      <p>
        nice1
      </p>
  </div>
</div>

HTML result after

<div field="model">
  <p>
    apogmdpaomdgpomaasdgpomasasodpmgmasopdg
    apm
    pdoggmaogmdapomdgpoam
    pdgopdmg
  </p>
  <div external="cards">
      <h1>cards external</h1>
      <p>
        nice1
      </p>
  </div>
</div>