public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: Julien Dutant <julien.dutant-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: pandoc-discuss <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: Use --number-sections with markdown output
Date: Tue, 10 May 2022 06:59:55 -0700 (PDT)	[thread overview]
Message-ID: <62577c1f-efe5-45b5-ab27-1d8705643afen@googlegroups.com> (raw)
In-Reply-To: <87zgjpzp6j.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>


[-- Attachment #1.1: Type: text/plain, Size: 2059 bytes --]

Side note: !!! I didn't know pandoc Lists could be concatenated with `..`, 
that's great! Is this a recent addition to the Lua filter module? Would be 
great to document it 
(https://pandoc.org/lua-filters.html#pandoc.list:__concat). Happy to submit 
a PR, but not sure whether small PRs on Pandoc's documentations are 
welcome. 

J

On Tuesday, May 10, 2022 at 10:56:28 AM UTC+1 Albert Krewinkel wrote:

>
> relayism <tamas....-fWcQWCtGVWc@public.gmane.org> writes:
>
> > I know --number-sections does not support markdown output, but how
> > could I achieve this:
> >
> > I am converting a .docx to .md and the headings in word are configured
> > to be numbered, when I convert to .md those numbers are lost.
> >
> > I'd like to have something like this
> >
> > # 1 title
> > ## 1.1 subtitle
> >
> > ## 1.2 subtitle
> >
> > # 2 title
> >
> > ### 2.1.1 subsbutitle
> >
> > as output, where the numbers are not explicitly part of the docx raw
> > text input, but could be appended in same way as --number-sections adds
> > it to other formats
>
> Here's a Lua filter that should do what you need. See
> https://pandoc.org/lua-filters.html for details.
>
> ``` lua
>
> function Pandoc (doc)
> doc.blocks = pandoc.utils.make_sections(true, nil, doc.blocks):walk {
> Div = function (div)
> if div.attributes.number then
> -- first child should be a heading
> local header = div.content[1]
> header.content = {div.attributes.number, pandoc.Space()}
> .. header.content
> header.attributes.number = nil
> return div.content
> end
> end
> }
> return doc
> end
>
> ```
>
> -- 
> 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/62577c1f-efe5-45b5-ab27-1d8705643afen%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 3180 bytes --]

  parent reply	other threads:[~2022-05-10 13:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-10  8:30 relayism
     [not found] ` <98ffebc1-b38b-43f5-8234-e222258abb95n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-05-10  9:42   ` Albert Krewinkel
     [not found]     ` <87zgjpzp6j.fsf-9EawChwDxG8hFhg+JK9F0w@public.gmane.org>
2022-05-10 13:59       ` Julien Dutant [this message]
     [not found]         ` <62577c1f-efe5-45b5-ab27-1d8705643afen-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-05-10 14:23           ` Bastien DUMONT

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=62577c1f-efe5-45b5-ab27-1d8705643afen@googlegroups.com \
    --to=julien.dutant-re5jqeeqqe8avxtiumwx3w@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).