public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: Albert Krewinkel <albert+pandoc-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
To: pandoc-discuss <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Auto-number list continuations
Date: Mon, 28 Nov 2022 13:01:07 +0100	[thread overview]
Message-ID: <87pmd7nuub.fsf@zeitkraut.de> (raw)

Just want to share a little filter that I wrote to automate item
counting in continued lists. E.g.

> i.   one
> #.   another
>
> Interruption; not part of any list.
>
> iii. continue
> #.   keep counting

The filter assumes that a continuation has a start number ≥90 and keeps
track of different list styles.

``` lua
local next_starts = {}

function OrderedList (ol)
  local key = ol.style .. '|' .. ol.delimiter
  if ol.start >= 90 then
    ol.start = next_starts[key] or 1
    next_starts[key] = ol.start + #ol.content
  else
    next_starts[key] = #ol.content + 1
  end

  return ol
end
```

There's also a blog post, but the above is already the gist of it.
https://tarleb.com/posts/list-continuation/

-- 
Albert Krewinkel
GPG: 8eed e3e2 e8c5 6f18 81fe  e836 388d c0b2 1f63 1124

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/87pmd7nuub.fsf%40zeitkraut.de.


             reply	other threads:[~2022-11-28 12:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-28 12:01 Albert Krewinkel [this message]
     [not found] ` <87pmd7nuub.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
2022-11-28 22:33   ` BPJ
     [not found]     ` <CADAJKhCeP59UU5sf92H0NKG5DtiPFfj10hr=rtv0XpMCoW-C5Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-11-29  7:03       ` Albert Krewinkel
     [not found]         ` <87cz96nryb.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
2022-11-29 10:12           ` BPJ

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87pmd7nuub.fsf@zeitkraut.de \
    --to=albert+pandoc-9eawchwdxg8hfhg+jk9f0w@public.gmane.org \
    --cc=pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).