Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 853 Bytes

File metadata and controls

44 lines (39 loc) · 853 Bytes

JevkoML

(TODO)

html [
  head [
    title [This is a title]
  ]
  body [
    div [
      p [Hello world!]
      abbr [
        id=[anId]
        class=[jargon]
        style=[color: purple;]
        title=[Hypertext Markup Language]
      HTML]
      a [href=[https://www.wikipedia.org/]
        A link to Wikipedia!
      ]
      p [
        Oh well, \span [lang=[fr][c'est la vie]], as they say in France.
      ]
    ]
  ]
]
<html><head><title>This is a title</title>
  </head><body><div><p>Hello world!</p><abbr id="anId" class="jargon" style="color: purple;" title="Hypertext Markup Language">
      HTML</abbr><a href="https://www.wikipedia.org/">
        A link to Wikipedia!
      </a><p>
        Oh well, <span lang="fr">c'est la vie</span>, as they say in France.
      </p>
    </div>
  </body>
</html>