public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: 山本一貴 <k.yamamoto.08136891-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: Re: Number concatenated chapters (Was: concatenating md have a page-break between in resulting docx?)
Date: Wed, 25 Sep 2019 19:25:18 +0900	[thread overview]
Message-ID: <CAPBn7noaBRW+g+_Opvb28MPrW1w1rnLC1LSyrU8xSES3=t6OYg@mail.gmail.com> (raw)
In-Reply-To: <d4057f17-ab65-4bb4-afb4-7ec97ab3cb22-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 3470 bytes --]

Hello,

My pre-processing lua filter might give a hint for you.
https://github.com/pandocker/pandocker-lua-filters/blob/master/lua/preprocess.lua
(I know this filter implement is not great. PR welcome btw )

1. make another md file ("base.md" for example) to include files by your
order like:

``` markdown
# #include "0-01-reagle-koerner.md"
# #include "1-00-hindsight.md"
# #include "1-01-reagle.md"
# #include "1-02-benjakob-harrison.md"
# #include "1-03-hill-shaw.md"
```

2. let pandoc process with base.md and the filter
pandoc -t docx --lua-filter=preprocess.lua base.md -o out.docx

3. the out.docx is equivalent to concatenated files by your order



2019年9月25日(水) 17:10 Agustín Martín <agusmba-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:

> > In addition to adding page breaks between the chapters, I'd like to have
> the title (first level-1 heading, in this case) prefixed with an chapter
> number taken from the file name. I want to do this dynamically, as I might
> rename/resort/reorganize the files based on their names.
>
> I'm not sure if you're artificially complicating matters. Both things can
> be achieved simply by modifying your reference-doc heading styles, having
> first level heading include a pagebreak before, and being numbered. Then
> you can put any name to the files (numbers if you like for sorting), and
> all your chapters will be sensibly numbered (independently of what the name
> of the original file was).
>
>
>
> On Monday, September 16, 2019 at 10:15:49 PM UTC+2, Joseph wrote:
>>
>>
>> On 9/5/19 4:48 PM, Joseph Reagle wrote:
>> > ```
>> >  for f in *-*-*.md; do cat $f page-break.md; done > test.md
>> > ```
>>
>> In addition to adding page breaks between the chapters, I'd like to have
>> the title (first level-1 heading, in this case) prefixed with an chapter
>> number taken from the file name. I want to do this dynamically, as I might
>> rename/resort/reorganize the files based on their names.
>>
>> So, for example, `1-01-reagle.md` is the first chapter in the first
>> section, and could have '1.' prefixed to its first heading. In looking at
>> filters, especially panflute, all the examples are of stand-alone filters
>> that are stateless between invocations...
>>
>> ```
>> 0-01-reagle-koerner.md
>> 1-00-hindsight.md
>> 1-01-reagle.md
>> 1-02-benjakob-harrison.md
>> 1-03-hill-shaw.md
>> ```
>>
>> Any suggestions?
>>
>> --
> 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/d4057f17-ab65-4bb4-afb4-7ec97ab3cb22%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/d4057f17-ab65-4bb4-afb4-7ec97ab3cb22%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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/CAPBn7noaBRW%2Bg%2B_Opvb28MPrW1w1rnLC1LSyrU8xSES3%3Dt6OYg%40mail.gmail.com.

[-- Attachment #2: Type: text/html, Size: 5463 bytes --]

  parent reply	other threads:[~2019-09-25 10:25 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-02 16:03 concatenating md have a page-break between in resulting docx? Joseph Reagle
     [not found] ` <f9be4687-f24a-919d-e699-75a535d0d492-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2019-09-05 17:24   ` Joseph Reagle
     [not found]     ` <db6ee278-4ed8-6e81-e42e-5c155c412795-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2019-09-05 19:55       ` BPJ
     [not found]         ` <CADAJKhB0LFNiTyspQnN5_4j87P1vA0LcgSM-9GrDKoLEOZGrDg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-09-05 20:43           ` BPJ
     [not found]             ` <CADAJKhCuGvDDSueCMNS+E6EW2cboz5LVQBSjPR7KmRo0Lic5bQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-09-05 20:48               ` Joseph Reagle
     [not found]                 ` <236f815f-2db1-4ee2-30d0-5794cd6301b3-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2019-09-16 20:15                   ` Number concatenated chapters (Was: concatenating md have a page-break between in resulting docx?) Joseph Reagle
     [not found]                     ` <83bd8e54-4c7f-2fd7-966e-fe2fb55755bd-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2019-09-19 22:00                       ` brainchild
2019-09-25  8:10                       ` Agustín Martín
     [not found]                         ` <d4057f17-ab65-4bb4-afb4-7ec97ab3cb22-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2019-09-25 10:25                           ` 山本一貴 [this message]
2019-09-05 20:46           ` concatenating md have a page-break between in resulting docx? Joseph Reagle
     [not found]             ` <16c406f5-ca1a-c2f2-de16-db846a919570-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2019-09-06  9:14               ` BP Jonsson
     [not found]                 ` <CAFC_yuTGVSn9VaG4h3-NgngzKxOW0maTvcpnxakUx7oTYYEjWw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-09-06 16:24                   ` -L for --lua-filter? John MacFarlane

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='CAPBn7noaBRW+g+_Opvb28MPrW1w1rnLC1LSyrU8xSES3=t6OYg@mail.gmail.com' \
    --to=k.yamamoto.08136891-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).