0

Given the list:

<ol>
    <li>first</li>
    <li>second</li>
</ol>

How can I create the same in Hoplon script (i.e. in Hoplon syntax)?

BreakPhreak
  • 10,940
  • 26
  • 72
  • 108

1 Answers1

4

Try this:

(ol
  (li :text "first")
  (li :text "second"))

You can find more examples here.

Raichman Sergey
  • 684
  • 6
  • 7