Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ordered list (<ol>) #99

Open
goose-life opened this issue Apr 27, 2022 · 1 comment
Open

Support ordered list (<ol>) #99

goose-life opened this issue Apr 27, 2022 · 1 comment

Comments

@goose-life
Copy link
Contributor

perhaps, to mirror the BULLETS markup, something like

NUMBERS
  1. sdfsdf
  2. dfsfs
  3. sdfsdf

where the space denotes the end of the num portion (although I realise lis don't have nums)

@longhotsummer
Copy link
Contributor

It's an idea.

Just to note that <ol> in AKN doesn't get to control its starting number or numbering format at all, like HTML does. So the numbers would effectively be ignored and simply converted to <li>, and the browser would add its own numbering.

So this would also be valid:

NUMEBRS
  44. ding
  44. foo
  99. bar

and produce something like:

<ol>
  <li>ding</li>
  <li>foo</li>
  <li>bar</li>
</ol>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants