public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* multiple html files
@ 2022-09-09 10:31 mr vicky
       [not found] ` <caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-09 10:31 UTC (permalink / raw)
  To: pandoc-discuss


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

hello
i want to create pdf file from multiple html file. And the files name are 
like this
html1
html2
html3

i want to convert them in single pdf or epub file
please can you explain me command and way of doing this ?

Thank you

-- 
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/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found] ` <caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2022-09-09 13:01   ` BPJ
       [not found]     ` <CADAJKhCJoJrJqj-VhrZ=amFPj0PwDT9XamEEp+LV=XXSRfLEnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: BPJ @ 2022-09-09 13:01 UTC (permalink / raw)
  To: pandoc-discuss

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

Generally you can just list them on the command line and pandoc will
concatenate them:

``````shell
pandoc -o all.pdf -f html html1 html2 html3
``````

Globbing might work

``````shell
pandoc -o all.pdf -f html html*
``````

but note that the shell sorts "alphabetically" so html10 sorts before
html2! You might want to zero-pad the numbers in the file names:

html00, html01 .. html09, html10 .. html99

so that there are two (or three) digits in every filename. I usually name
my files using three digits with "gaps" *before* the actual name:

000-frontmatter.md
010-preface.md
020-introduction.md
030-preliminaries.md
040-advanced.md

so that if I later want to insert a chapter between say the third and
fourth chapter I can number it 035-something.md and if I want to insert a
chapter before that I can call it 033-whatever.md so that I don't need to
renumber several files and globbing

``````shell
pandoc -o all.pdf *.md
``````

will still give me all the files in correct order.

/bpj

Den fre 9 sep. 2022 12:31mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> hello
> i want to create pdf file from multiple html file. And the files name are
> like this
> html1
> html2
> html3
>
> i want to convert them in single pdf or epub file
> please can you explain me command and way of doing this ?
>
> Thank you
>
> --
> 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/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/CADAJKhCJoJrJqj-VhrZ%3DamFPj0PwDT9XamEEp%2BLV%3DXXSRfLEnw%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]     ` <CADAJKhCJoJrJqj-VhrZ=amFPj0PwDT9XamEEp+LV=XXSRfLEnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-12 14:48       ` mr vicky
       [not found]         ` <2ec806d1-af88-4023-9d8b-fb2852935dfen-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-12 14:48 UTC (permalink / raw)
  To: pandoc-discuss


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

i have more than 100 html files evan more than 400 html files and my all 
files name are like this 1.html, 2.html 3.html 4.html
so i can convert them all in single epub ?
and i need to write all file names in command ?
On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:

> Generally you can just list them on the command line and pandoc will 
> concatenate them:
>
> ``````shell
> pandoc -o all.pdf -f html html1 html2 html3
> ``````
>
> Globbing might work
>
> ``````shell
> pandoc -o all.pdf -f html html*
> ``````
>
> but note that the shell sorts "alphabetically" so html10 sorts before 
> html2! You might want to zero-pad the numbers in the file names:
>
> html00, html01 .. html09, html10 .. html99
>
> so that there are two (or three) digits in every filename. I usually name 
> my files using three digits with "gaps" *before* the actual name:
>
> 000-frontmatter.md
> 010-preface.md
> 020-introduction.md
> 030-preliminaries.md
> 040-advanced.md
>
> so that if I later want to insert a chapter between say the third and 
> fourth chapter I can number it 035-something.md and if I want to insert a 
> chapter before that I can call it 033-whatever.md so that I don't need to 
> renumber several files and globbing
>
> ``````shell
> pandoc -o all.pdf *.md
> ``````
>
> will still give me all the files in correct order.
>
> /bpj
>
> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> hello
>> i want to create pdf file from multiple html file. And the files name are 
>> like this
>> html1
>> html2
>> html3
>>
>> i want to convert them in single pdf or epub file
>> please can you explain me command and way of doing this ?
>>
>> Thank you
>>
>> -- 
>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com 
>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]         ` <2ec806d1-af88-4023-9d8b-fb2852935dfen-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2022-09-12 16:52           ` BPJ
       [not found]             ` <CADAJKhD84_=TbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: BPJ @ 2022-09-12 16:52 UTC (permalink / raw)
  To: pandoc-discuss

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

I would use a script to change the names to zero-padded format and then
glob them.

Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> i have more than 100 html files evan more than 400 html files and my all
> files name are like this 1.html, 2.html 3.html 4.html
> so i can convert them all in single epub ?
> and i need to write all file names in command ?
> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>
>> Generally you can just list them on the command line and pandoc will
>> concatenate them:
>>
>> ``````shell
>> pandoc -o all.pdf -f html html1 html2 html3
>> ``````
>>
>> Globbing might work
>>
>> ``````shell
>> pandoc -o all.pdf -f html html*
>> ``````
>>
>> but note that the shell sorts "alphabetically" so html10 sorts before
>> html2! You might want to zero-pad the numbers in the file names:
>>
>> html00, html01 .. html09, html10 .. html99
>>
>> so that there are two (or three) digits in every filename. I usually name
>> my files using three digits with "gaps" *before* the actual name:
>>
>> 000-frontmatter.md
>> 010-preface.md
>> 020-introduction.md
>> 030-preliminaries.md
>> 040-advanced.md
>>
>> so that if I later want to insert a chapter between say the third and
>> fourth chapter I can number it 035-something.md and if I want to insert a
>> chapter before that I can call it 033-whatever.md so that I don't need to
>> renumber several files and globbing
>>
>> ``````shell
>> pandoc -o all.pdf *.md
>> ``````
>>
>> will still give me all the files in correct order.
>>
>> /bpj
>>
>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>> hello
>>> i want to create pdf file from multiple html file. And the files name
>>> are like this
>>> html1
>>> html2
>>> html3
>>>
>>> i want to convert them in single pdf or epub file
>>> please can you explain me command and way of doing this ?
>>>
>>> Thank you
>>>
>>> --
>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]             ` <CADAJKhD84_=TbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-12 16:55               ` mr vicky
       [not found]                 ` <CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-12 16:55 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

i can use also
i have software which will rename all files and ad 0 before numbers but
tell me will i write all files name in command or just from file one to
last number file ?

On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:

> I would use a script to change the names to zero-padded format and then
> glob them.
>
> Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> i have more than 100 html files evan more than 400 html files and my all
>> files name are like this 1.html, 2.html 3.html 4.html
>> so i can convert them all in single epub ?
>> and i need to write all file names in command ?
>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>
>>> Generally you can just list them on the command line and pandoc will
>>> concatenate them:
>>>
>>> ``````shell
>>> pandoc -o all.pdf -f html html1 html2 html3
>>> ``````
>>>
>>> Globbing might work
>>>
>>> ``````shell
>>> pandoc -o all.pdf -f html html*
>>> ``````
>>>
>>> but note that the shell sorts "alphabetically" so html10 sorts before
>>> html2! You might want to zero-pad the numbers in the file names:
>>>
>>> html00, html01 .. html09, html10 .. html99
>>>
>>> so that there are two (or three) digits in every filename. I usually
>>> name my files using three digits with "gaps" *before* the actual name:
>>>
>>> 000-frontmatter.md
>>> 010-preface.md
>>> 020-introduction.md
>>> 030-preliminaries.md
>>> 040-advanced.md
>>>
>>> so that if I later want to insert a chapter between say the third and
>>> fourth chapter I can number it 035-something.md and if I want to insert a
>>> chapter before that I can call it 033-whatever.md so that I don't need to
>>> renumber several files and globbing
>>>
>>> ``````shell
>>> pandoc -o all.pdf *.md
>>> ``````
>>>
>>> will still give me all the files in correct order.
>>>
>>> /bpj
>>>
>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>> hello
>>>> i want to create pdf file from multiple html file. And the files name
>>>> are like this
>>>> html1
>>>> html2
>>>> html3
>>>>
>>>> i want to convert them in single pdf or epub file
>>>> please can you explain me command and way of doing this ?
>>>>
>>>> Thank you
>>>>
>>>> --
>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                 ` <CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-12 17:09                   ` BPJ
       [not found]                     ` <CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: BPJ @ 2022-09-12 17:09 UTC (permalink / raw)
  To: pandoc-discuss

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

just type *.html (star included) and it will be as if you had listed all
the .html files in the current directory in alphabetical order.
It doesn't have to be the current directory: if the files are in a
subdirectory html then html/*.html will work.

Note that you shouldn't just prepend a zero to all file names: you should
prepend two zeroes to files 0.html through 9.html and one zero to files
10.html through 99.html; the goal is for all file names to start in the
same number of digits.

Den mån 12 sep. 2022 18:56mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> i can use also
> i have software which will rename all files and ad 0 before numbers but
> tell me will i write all files name in command or just from file one to
> last number file ?
>
> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>
>> I would use a script to change the names to zero-padded format and then
>> glob them.
>>
>> Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>> i have more than 100 html files evan more than 400 html files and my all
>>> files name are like this 1.html, 2.html 3.html 4.html
>>> so i can convert them all in single epub ?
>>> and i need to write all file names in command ?
>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>
>>>> Generally you can just list them on the command line and pandoc will
>>>> concatenate them:
>>>>
>>>> ``````shell
>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>> ``````
>>>>
>>>> Globbing might work
>>>>
>>>> ``````shell
>>>> pandoc -o all.pdf -f html html*
>>>> ``````
>>>>
>>>> but note that the shell sorts "alphabetically" so html10 sorts before
>>>> html2! You might want to zero-pad the numbers in the file names:
>>>>
>>>> html00, html01 .. html09, html10 .. html99
>>>>
>>>> so that there are two (or three) digits in every filename. I usually
>>>> name my files using three digits with "gaps" *before* the actual name:
>>>>
>>>> 000-frontmatter.md
>>>> 010-preface.md
>>>> 020-introduction.md
>>>> 030-preliminaries.md
>>>> 040-advanced.md
>>>>
>>>> so that if I later want to insert a chapter between say the third and
>>>> fourth chapter I can number it 035-something.md and if I want to insert a
>>>> chapter before that I can call it 033-whatever.md so that I don't need to
>>>> renumber several files and globbing
>>>>
>>>> ``````shell
>>>> pandoc -o all.pdf *.md
>>>> ``````
>>>>
>>>> will still give me all the files in correct order.
>>>>
>>>> /bpj
>>>>
>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>
>>>>> hello
>>>>> i want to create pdf file from multiple html file. And the files name
>>>>> are like this
>>>>> html1
>>>>> html2
>>>>> html3
>>>>>
>>>>> i want to convert them in single pdf or epub file
>>>>> please can you explain me command and way of doing this ?
>>>>>
>>>>> Thank you
>>>>>
>>>>> --
>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.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/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                     ` <CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-12 17:32                       ` mr vicky
       [not found]                         ` <CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj+nuHxVppG=RC7jGi9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-12 17:32 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

you means i rename like this
001.html
002.htnl
003.html
004.html
005.html
006.html
007.html
008.html
009.html
010.html

check this 10th number is right ?
and what about when i reach 100 number of file and then 200 number of file
because my files are more than 400

On Mon, 12 Sep 2022 at 10:09 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:

> just type *.html (star included) and it will be as if you had listed all
> the .html files in the current directory in alphabetical order.
> It doesn't have to be the current directory: if the files are in a
> subdirectory html then html/*.html will work.
>
> Note that you shouldn't just prepend a zero to all file names: you should
> prepend two zeroes to files 0.html through 9.html and one zero to files
> 10.html through 99.html; the goal is for all file names to start in the
> same number of digits.
>
> Den mån 12 sep. 2022 18:56mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> i can use also
>> i have software which will rename all files and ad 0 before numbers but
>> tell me will i write all files name in command or just from file one to
>> last number file ?
>>
>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>
>>> I would use a script to change the names to zero-padded format and then
>>> glob them.
>>>
>>> Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>> i have more than 100 html files evan more than 400 html files and my
>>>> all files name are like this 1.html, 2.html 3.html 4.html
>>>> so i can convert them all in single epub ?
>>>> and i need to write all file names in command ?
>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>
>>>>> Generally you can just list them on the command line and pandoc will
>>>>> concatenate them:
>>>>>
>>>>> ``````shell
>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>> ``````
>>>>>
>>>>> Globbing might work
>>>>>
>>>>> ``````shell
>>>>> pandoc -o all.pdf -f html html*
>>>>> ``````
>>>>>
>>>>> but note that the shell sorts "alphabetically" so html10 sorts before
>>>>> html2! You might want to zero-pad the numbers in the file names:
>>>>>
>>>>> html00, html01 .. html09, html10 .. html99
>>>>>
>>>>> so that there are two (or three) digits in every filename. I usually
>>>>> name my files using three digits with "gaps" *before* the actual name:
>>>>>
>>>>> 000-frontmatter.md
>>>>> 010-preface.md
>>>>> 020-introduction.md
>>>>> 030-preliminaries.md
>>>>> 040-advanced.md
>>>>>
>>>>> so that if I later want to insert a chapter between say the third and
>>>>> fourth chapter I can number it 035-something.md and if I want to insert a
>>>>> chapter before that I can call it 033-whatever.md so that I don't need to
>>>>> renumber several files and globbing
>>>>>
>>>>> ``````shell
>>>>> pandoc -o all.pdf *.md
>>>>> ``````
>>>>>
>>>>> will still give me all the files in correct order.
>>>>>
>>>>> /bpj
>>>>>
>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>
>>>>>> hello
>>>>>> i want to create pdf file from multiple html file. And the files name
>>>>>> are like this
>>>>>> html1
>>>>>> html2
>>>>>> html3
>>>>>>
>>>>>> i want to convert them in single pdf or epub file
>>>>>> please can you explain me command and way of doing this ?
>>>>>>
>>>>>> Thank you
>>>>>>
>>>>>> --
>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>
>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "pandoc-discuss" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
> To unsubscribe from this group and all its topics, 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/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                         ` <CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj+nuHxVppG=RC7jGi9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-12 18:00                           ` Daniel Staal
  2022-09-12 18:40                           ` BPJ
  1 sibling, 0 replies; 23+ messages in thread
From: Daniel Staal @ 2022-09-12 18:00 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

That should all work correctly.

Note that it's really better to think of this as an ASCIIbetical sort 
than an aphabetical sort.  In ASCII order, 0 comes before 1, so 00 comes 
before 01, which comes after 001, etc.

On 9/12/22 1:32 PM, mr vicky wrote:
> you means i rename like this
> 001.html
> 002.htnl
> 003.html
> 004.html
> 005.html
> 006.html
> 007.html
> 008.html
> 009.html
> 010.html
> 
> check this 10th number is right ?
> and what about when i reach 100 number of file and then 200 number of file
> because my files are more than 400
> 
> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org 
> <mailto:bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org>> wrote:
> 
>     just type *.html (star included) and it will be as if you had listed
>     all the .html files in the current directory in alphabetical order.
>     It doesn't have to be the current directory: if the files are in a
>     subdirectory html then html/*.html will work.
> 
>     Note that you shouldn't just prepend a zero to all file names: you
>     should prepend two zeroes to files 0.html through 9.html and one
>     zero to files 10.html through 99.html; the goal is for all file
>     names to start in the same number of digits.
> 
>     Den mån 12 sep. 2022 18:56mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
>     <mailto:v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>> skrev:
> 
>         i can use also
>         i have software which will rename all files and ad 0 before
>         numbers but tell me will i write all files name in command or
>         just from file one to last number file ?
> 
>         On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org
>         <mailto:bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org>> wrote:
> 
>             I would use a script to change the names to zero-padded
>             format and then glob them.
> 
>             Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
>             <mailto:v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>> skrev:
> 
>                 i have more than 100 html files evan more than 400 html
>                 files and my all files name are like this 1.html, 2.html
>                 3.html 4.html
>                 so i can convert them all in single epub ?
>                 and i need to write all file names in command ?
>                 On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
> 
>                     Generally you can just list them on the command line
>                     and pandoc will concatenate them:
> 
>                     ``````shell
>                     pandoc -o all.pdf -f html html1 html2 html3
>                     ``````
> 
>                     Globbing might work
> 
>                     ``````shell
>                     pandoc -o all.pdf -f html html*
>                     ``````
> 
>                     but note that the shell sorts "alphabetically" so
>                     html10 sorts before html2! You might want to
>                     zero-pad the numbers in the file names:
> 
>                     html00, html01 .. html09, html10 .. html99
> 
>                     so that there are two (or three) digits in every
>                     filename. I usually name my files using three digits
>                     with "gaps" *before* the actual name:
> 
>                     000-frontmatter.md
>                     010-preface.md
>                     020-introduction.md
>                     030-preliminaries.md
>                     040-advanced.md
> 
>                     so that if I later want to insert a chapter between
>                     say the third and fourth chapter I can number it
>                     035-something.md and if I want to insert a chapter
>                     before that I can call it 033-whatever.md so that I
>                     don't need to renumber several files and globbing
> 
>                     ``````shell
>                     pandoc -o all.pdf *.md
>                     ``````
> 
>                     will still give me all the files in correct order.
> 
>                     /bpj
> 
>                     Den fre 9 sep. 2022 12:31mr vicky
>                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
> 
>                         hello
>                         i want to create pdf file from multiple html
>                         file. And the files name are like this
>                         html1
>                         html2
>                         html3
> 
>                         i want to convert them in single pdf or epub file
>                         please can you explain me command and way of
>                         doing this ?
> 
>                         Thank you
> 
>                         -- 
>                         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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>                         To view this discussion on the web visit
>                         https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>                 <mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>.
>                 To view this discussion on the web visit
>                 https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>             <mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>.
>             To view this discussion on the web visit
>             https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>         <mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>.
> 
>         To view this discussion on the web visit
>         https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
> 
> 
>     -- 
>     You received this message because you are subscribed to a topic in
>     the Google Groups "pandoc-discuss" group.
>     To unsubscribe from this topic, visit
>     https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe <https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe>.
>     To unsubscribe from this group and all its topics, send an email to
>     pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>     <mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>.
>     To view this discussion on the web visit
>     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
---------------------------------------------------------------
This email copyright the author.  Unless otherwise noted, you
are expressly allowed to retransmit, quote, or otherwise use
the contents for non-commercial purposes.  This copyright will
expire 5 years after the author's death, or in 30 years,
whichever is longer, unless such a period is in excess of
local copyright law.
---------------------------------------------------------------

-- 
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/4dbc4ce3-4bcf-e336-909e-6d308b8095d7%40usa.net.


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                         ` <CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj+nuHxVppG=RC7jGi9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2022-09-12 18:00                           ` Daniel Staal
@ 2022-09-12 18:40                           ` BPJ
       [not found]                             ` <CADAJKhDaM033xRTbA=Q_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 1 reply; 23+ messages in thread
From: BPJ @ 2022-09-12 18:40 UTC (permalink / raw)
  To: pandoc-discuss

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

That's right. You don't need to prefix anything to 100 and up since you
have less than 1000 files.

Den mån 12 sep. 2022 19:33mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> you means i rename like this
> 001.html
> 002.htnl
> 003.html
> 004.html
> 005.html
> 006.html
> 007.html
> 008.html
> 009.html
> 010.html
>
> check this 10th number is right ?
> and what about when i reach 100 number of file and then 200 number of file
> because my files are more than 400
>
> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>
>> just type *.html (star included) and it will be as if you had listed all
>> the .html files in the current directory in alphabetical order.
>> It doesn't have to be the current directory: if the files are in a
>> subdirectory html then html/*.html will work.
>>
>> Note that you shouldn't just prepend a zero to all file names: you should
>> prepend two zeroes to files 0.html through 9.html and one zero to files
>> 10.html through 99.html; the goal is for all file names to start in the
>> same number of digits.
>>
>> Den mån 12 sep. 2022 18:56mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>> i can use also
>>> i have software which will rename all files and ad 0 before numbers but
>>> tell me will i write all files name in command or just from file one to
>>> last number file ?
>>>
>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>
>>>> I would use a script to change the names to zero-padded format and then
>>>> glob them.
>>>>
>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>
>>>>> i have more than 100 html files evan more than 400 html files and my
>>>>> all files name are like this 1.html, 2.html 3.html 4.html
>>>>> so i can convert them all in single epub ?
>>>>> and i need to write all file names in command ?
>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>
>>>>>> Generally you can just list them on the command line and pandoc will
>>>>>> concatenate them:
>>>>>>
>>>>>> ``````shell
>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>> ``````
>>>>>>
>>>>>> Globbing might work
>>>>>>
>>>>>> ``````shell
>>>>>> pandoc -o all.pdf -f html html*
>>>>>> ``````
>>>>>>
>>>>>> but note that the shell sorts "alphabetically" so html10 sorts before
>>>>>> html2! You might want to zero-pad the numbers in the file names:
>>>>>>
>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>
>>>>>> so that there are two (or three) digits in every filename. I usually
>>>>>> name my files using three digits with "gaps" *before* the actual name:
>>>>>>
>>>>>> 000-frontmatter.md
>>>>>> 010-preface.md
>>>>>> 020-introduction.md
>>>>>> 030-preliminaries.md
>>>>>> 040-advanced.md
>>>>>>
>>>>>> so that if I later want to insert a chapter between say the third and
>>>>>> fourth chapter I can number it 035-something.md and if I want to insert a
>>>>>> chapter before that I can call it 033-whatever.md so that I don't need to
>>>>>> renumber several files and globbing
>>>>>>
>>>>>> ``````shell
>>>>>> pandoc -o all.pdf *.md
>>>>>> ``````
>>>>>>
>>>>>> will still give me all the files in correct order.
>>>>>>
>>>>>> /bpj
>>>>>>
>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>> hello
>>>>>>> i want to create pdf file from multiple html file. And the files
>>>>>>> name are like this
>>>>>>> html1
>>>>>>> html2
>>>>>>> html3
>>>>>>>
>>>>>>> i want to convert them in single pdf or epub file
>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>
>>>>>>> Thank you
>>>>>>>
>>>>>>> --
>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>
>>
>>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "pandoc-discuss" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
>> To unsubscribe from this group and all its topics, 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/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                             ` <CADAJKhDaM033xRTbA=Q_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-12 18:50                               ` mr vicky
       [not found]                                 ` <CAH8MJH8Kwyj4wa-+fn8wN-H5=E+6Ut7UROiMWvu=pfhepTgAGQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-12 18:50 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

will you tell me which rename script you are using?
may be it will be more easy for me .
Thank you very much for your help :)

On Mon, 12 Sep 2022 at 11:40 pm, BPJ <melroch-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:

> That's right. You don't need to prefix anything to 100 and up since you
> have less than 1000 files.
>
> Den mån 12 sep. 2022 19:33mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> you means i rename like this
>> 001.html
>> 002.htnl
>> 003.html
>> 004.html
>> 005.html
>> 006.html
>> 007.html
>> 008.html
>> 009.html
>> 010.html
>>
>> check this 10th number is right ?
>> and what about when i reach 100 number of file and then 200 number of file
>> because my files are more than 400
>>
>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>
>>> just type *.html (star included) and it will be as if you had listed all
>>> the .html files in the current directory in alphabetical order.
>>> It doesn't have to be the current directory: if the files are in a
>>> subdirectory html then html/*.html will work.
>>>
>>> Note that you shouldn't just prepend a zero to all file names: you
>>> should prepend two zeroes to files 0.html through 9.html and one zero to
>>> files 10.html through 99.html; the goal is for all file names to start in
>>> the same number of digits.
>>>
>>> Den mån 12 sep. 2022 18:56mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>> i can use also
>>>> i have software which will rename all files and ad 0 before numbers but
>>>> tell me will i write all files name in command or just from file one to
>>>> last number file ?
>>>>
>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>
>>>>> I would use a script to change the names to zero-padded format and
>>>>> then glob them.
>>>>>
>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>
>>>>>> i have more than 100 html files evan more than 400 html files and my
>>>>>> all files name are like this 1.html, 2.html 3.html 4.html
>>>>>> so i can convert them all in single epub ?
>>>>>> and i need to write all file names in command ?
>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>
>>>>>>> Generally you can just list them on the command line and pandoc will
>>>>>>> concatenate them:
>>>>>>>
>>>>>>> ``````shell
>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>> ``````
>>>>>>>
>>>>>>> Globbing might work
>>>>>>>
>>>>>>> ``````shell
>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>> ``````
>>>>>>>
>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts
>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>
>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>
>>>>>>> so that there are two (or three) digits in every filename. I usually
>>>>>>> name my files using three digits with "gaps" *before* the actual name:
>>>>>>>
>>>>>>> 000-frontmatter.md
>>>>>>> 010-preface.md
>>>>>>> 020-introduction.md
>>>>>>> 030-preliminaries.md
>>>>>>> 040-advanced.md
>>>>>>>
>>>>>>> so that if I later want to insert a chapter between say the third
>>>>>>> and fourth chapter I can number it 035-something.md and if I want to insert
>>>>>>> a chapter before that I can call it 033-whatever.md so that I don't need to
>>>>>>> renumber several files and globbing
>>>>>>>
>>>>>>> ``````shell
>>>>>>> pandoc -o all.pdf *.md
>>>>>>> ``````
>>>>>>>
>>>>>>> will still give me all the files in correct order.
>>>>>>>
>>>>>>> /bpj
>>>>>>>
>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>
>>>>>>>> hello
>>>>>>>> i want to create pdf file from multiple html file. And the files
>>>>>>>> name are like this
>>>>>>>> html1
>>>>>>>> html2
>>>>>>>> html3
>>>>>>>>
>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>
>>>>>>>> Thank you
>>>>>>>>
>>>>>>>> --
>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>> .
>>>
>>>
>>>> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "pandoc-discuss" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, 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/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                 ` <CAH8MJH8Kwyj4wa-+fn8wN-H5=E+6Ut7UROiMWvu=pfhepTgAGQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-13 13:02                                   ` BPJ
       [not found]                                     ` <CADAJKhCmsHkjbgG+_O9dymRRr0hcO3ViEKLL78ekK+ObWV6srw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: BPJ @ 2022-09-13 13:02 UTC (permalink / raw)
  To: pandoc-discuss


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

Attached. You will need perl >= 5.14. See the README.md file!

Den mån 12 sep. 2022 20:51mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> will you tell me which rename script you are using?
> may be it will be more easy for me .
> Thank you very much for your help :)
>
> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <melroch-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
>> That's right. You don't need to prefix anything to 100 and up since you
>> have less than 1000 files.
>>
>> Den mån 12 sep. 2022 19:33mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>> you means i rename like this
>>> 001.html
>>> 002.htnl
>>> 003.html
>>> 004.html
>>> 005.html
>>> 006.html
>>> 007.html
>>> 008.html
>>> 009.html
>>> 010.html
>>>
>>> check this 10th number is right ?
>>> and what about when i reach 100 number of file and then 200 number of
>>> file
>>> because my files are more than 400
>>>
>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>
>>>> just type *.html (star included) and it will be as if you had listed
>>>> all the .html files in the current directory in alphabetical order.
>>>> It doesn't have to be the current directory: if the files are in a
>>>> subdirectory html then html/*.html will work.
>>>>
>>>> Note that you shouldn't just prepend a zero to all file names: you
>>>> should prepend two zeroes to files 0.html through 9.html and one zero to
>>>> files 10.html through 99.html; the goal is for all file names to start in
>>>> the same number of digits.
>>>>
>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>
>>>>> i can use also
>>>>> i have software which will rename all files and ad 0 before numbers
>>>>> but tell me will i write all files name in command or just from file one to
>>>>> last number file ?
>>>>>
>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <bpj-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>
>>>>>> I would use a script to change the names to zero-padded format and
>>>>>> then glob them.
>>>>>>
>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>> i have more than 100 html files evan more than 400 html files and my
>>>>>>> all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>> so i can convert them all in single epub ?
>>>>>>> and i need to write all file names in command ?
>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>
>>>>>>>> Generally you can just list them on the command line and pandoc
>>>>>>>> will concatenate them:
>>>>>>>>
>>>>>>>> ``````shell
>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>> ``````
>>>>>>>>
>>>>>>>> Globbing might work
>>>>>>>>
>>>>>>>> ``````shell
>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>> ``````
>>>>>>>>
>>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts
>>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>>
>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>
>>>>>>>> so that there are two (or three) digits in every filename. I
>>>>>>>> usually name my files using three digits with "gaps" *before* the actual
>>>>>>>> name:
>>>>>>>>
>>>>>>>> 000-frontmatter.md
>>>>>>>> 010-preface.md
>>>>>>>> 020-introduction.md
>>>>>>>> 030-preliminaries.md
>>>>>>>> 040-advanced.md
>>>>>>>>
>>>>>>>> so that if I later want to insert a chapter between say the third
>>>>>>>> and fourth chapter I can number it 035-something.md and if I want to insert
>>>>>>>> a chapter before that I can call it 033-whatever.md so that I don't need to
>>>>>>>> renumber several files and globbing
>>>>>>>>
>>>>>>>> ``````shell
>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>> ``````
>>>>>>>>
>>>>>>>> will still give me all the files in correct order.
>>>>>>>>
>>>>>>>> /bpj
>>>>>>>>
>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>
>>>>>>>>> hello
>>>>>>>>> i want to create pdf file from multiple html file. And the files
>>>>>>>>> name are like this
>>>>>>>>> html1
>>>>>>>>> html2
>>>>>>>>> html3
>>>>>>>>>
>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>
>>>>>>>>> Thank you
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>> To view this discussion on the web visit
>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>
>>>>
>>>>> --
>>>> You received this message because you are subscribed to a topic in the
>>>> Google Groups "pandoc-discuss" group.
>>>> To unsubscribe from this topic, visit
>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>> .
>>>> To unsubscribe from this group and all its topics, 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/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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/CADAJKhCmsHkjbgG%2B_O9dymRRr0hcO3ViEKLL78ekK%2BObWV6srw%40mail.gmail.com.

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

[-- Attachment #2: zero-pad.zip --]
[-- Type: application/zip, Size: 13302 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                     ` <CADAJKhCmsHkjbgG+_O9dymRRr0hcO3ViEKLL78ekK+ObWV6srw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-13 14:06                                       ` mr vicky
       [not found]                                         ` <1dd12510-187f-429c-b976-1220427aa2ben-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-13 14:06 UTC (permalink / raw)
  To: pandoc-discuss


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

ok thank you very much :)

On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:

> Attached. You will need perl >= 5.14. See the README.md file!
>
> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> will you tell me which rename script you are using? 
>> may be it will be more easy for me .
>> Thank you very much for your help :)
>>
>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>
>>> That's right. You don't need to prefix anything to 100 and up since you 
>>> have less than 1000 files.
>>>
>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>> you means i rename like this
>>>> 001.html
>>>> 002.htnl
>>>> 003.html
>>>> 004.html
>>>> 005.html
>>>> 006.html
>>>> 007.html
>>>> 008.html
>>>> 009.html
>>>> 010.html
>>>>
>>>> check this 10th number is right ?
>>>> and what about when i reach 100 number of file and then 200 number of 
>>>> file
>>>> because my files are more than 400 
>>>>
>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>
>>>>> just type *.html (star included) and it will be as if you had listed 
>>>>> all the .html files in the current directory in alphabetical order.
>>>>> It doesn't have to be the current directory: if the files are in a 
>>>>> subdirectory html then html/*.html will work.
>>>>>
>>>>> Note that you shouldn't just prepend a zero to all file names: you 
>>>>> should prepend two zeroes to files 0.html through 9.html and one zero to 
>>>>> files 10.html through 99.html; the goal is for all file names to start in 
>>>>> the same number of digits.
>>>>>
>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>
>>>>>> i can use also 
>>>>>> i have software which will rename all files and ad 0 before numbers 
>>>>>> but tell me will i write all files name in command or just from file one to 
>>>>>> last number file ?
>>>>>>
>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>
>>>>>>> I would use a script to change the names to zero-padded format and 
>>>>>>> then glob them.
>>>>>>>
>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>
>>>>>>>> i have more than 100 html files evan more than 400 html files and 
>>>>>>>> my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>> so i can convert them all in single epub ?
>>>>>>>> and i need to write all file names in command ?
>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>
>>>>>>>>> Generally you can just list them on the command line and pandoc 
>>>>>>>>> will concatenate them:
>>>>>>>>>
>>>>>>>>> ``````shell
>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>> ``````
>>>>>>>>>
>>>>>>>>> Globbing might work
>>>>>>>>>
>>>>>>>>> ``````shell
>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>> ``````
>>>>>>>>>
>>>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts 
>>>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>>>
>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>
>>>>>>>>> so that there are two (or three) digits in every filename. I 
>>>>>>>>> usually name my files using three digits with "gaps" *before* the actual 
>>>>>>>>> name:
>>>>>>>>>
>>>>>>>>> 000-frontmatter.md
>>>>>>>>> 010-preface.md
>>>>>>>>> 020-introduction.md
>>>>>>>>> 030-preliminaries.md
>>>>>>>>> 040-advanced.md
>>>>>>>>>
>>>>>>>>> so that if I later want to insert a chapter between say the third 
>>>>>>>>> and fourth chapter I can number it 035-something.md and if I want to insert 
>>>>>>>>> a chapter before that I can call it 033-whatever.md so that I don't need to 
>>>>>>>>> renumber several files and globbing
>>>>>>>>>
>>>>>>>>> ``````shell
>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>> ``````
>>>>>>>>>
>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>
>>>>>>>>> /bpj
>>>>>>>>>
>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>
>>>>>>>>>> hello
>>>>>>>>>> i want to create pdf file from multiple html file. And the files 
>>>>>>>>>> name are like this
>>>>>>>>>> html1
>>>>>>>>>> html2
>>>>>>>>>> html3
>>>>>>>>>>
>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>
>>>>>>>>>> Thank you
>>>>>>>>>>
>>>>>>>>>> -- 
>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com 
>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>> To view this discussion on the web visit 
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com 
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>> To view this discussion on the web visit 
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com 
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>
>>>>> To view this discussion on the web visit 
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com 
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>> .
>>>>>
>>>>>
>>>>>> -- 
>>>>> You received this message because you are subscribed to a topic in the 
>>>>> Google Groups "pandoc-discuss" group.
>>>>> To unsubscribe from this topic, visit 
>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>> .
>>>>> To unsubscribe from this group and all its topics, send an email to 
>>>>> pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>> To view this discussion on the web visit 
>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com 
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>
>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com 
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com 
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com 
>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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/1dd12510-187f-429c-b976-1220427aa2ben%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                         ` <1dd12510-187f-429c-b976-1220427aa2ben-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2022-09-13 16:20                                           ` mr vicky
       [not found]                                             ` <1d652de4-3624-46a1-a671-cc73ce6417d4n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-13 16:20 UTC (permalink / raw)
  To: pandoc-discuss


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

i am using this command 
pandoc -o my.epub *.html
here is result
pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid argument)


On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:

> ok thank you very much :)
>
> On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>
>> Attached. You will need perl >= 5.14. See the README.md file!
>>
>> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>> will you tell me which rename script you are using? 
>>> may be it will be more easy for me .
>>> Thank you very much for your help :)
>>>
>>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>
>>>> That's right. You don't need to prefix anything to 100 and up since you 
>>>> have less than 1000 files.
>>>>
>>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>
>>>>> you means i rename like this
>>>>> 001.html
>>>>> 002.htnl
>>>>> 003.html
>>>>> 004.html
>>>>> 005.html
>>>>> 006.html
>>>>> 007.html
>>>>> 008.html
>>>>> 009.html
>>>>> 010.html
>>>>>
>>>>> check this 10th number is right ?
>>>>> and what about when i reach 100 number of file and then 200 number of 
>>>>> file
>>>>> because my files are more than 400 
>>>>>
>>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>
>>>>>> just type *.html (star included) and it will be as if you had listed 
>>>>>> all the .html files in the current directory in alphabetical order.
>>>>>> It doesn't have to be the current directory: if the files are in a 
>>>>>> subdirectory html then html/*.html will work.
>>>>>>
>>>>>> Note that you shouldn't just prepend a zero to all file names: you 
>>>>>> should prepend two zeroes to files 0.html through 9.html and one zero to 
>>>>>> files 10.html through 99.html; the goal is for all file names to start in 
>>>>>> the same number of digits.
>>>>>>
>>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>> i can use also 
>>>>>>> i have software which will rename all files and ad 0 before numbers 
>>>>>>> but tell me will i write all files name in command or just from file one to 
>>>>>>> last number file ?
>>>>>>>
>>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>
>>>>>>>> I would use a script to change the names to zero-padded format and 
>>>>>>>> then glob them.
>>>>>>>>
>>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>
>>>>>>>>> i have more than 100 html files evan more than 400 html files and 
>>>>>>>>> my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>>> so i can convert them all in single epub ?
>>>>>>>>> and i need to write all file names in command ?
>>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>>
>>>>>>>>>> Generally you can just list them on the command line and pandoc 
>>>>>>>>>> will concatenate them:
>>>>>>>>>>
>>>>>>>>>> ``````shell
>>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>>> ``````
>>>>>>>>>>
>>>>>>>>>> Globbing might work
>>>>>>>>>>
>>>>>>>>>> ``````shell
>>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>>> ``````
>>>>>>>>>>
>>>>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts 
>>>>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>>>>
>>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>>
>>>>>>>>>> so that there are two (or three) digits in every filename. I 
>>>>>>>>>> usually name my files using three digits with "gaps" *before* the actual 
>>>>>>>>>> name:
>>>>>>>>>>
>>>>>>>>>> 000-frontmatter.md
>>>>>>>>>> 010-preface.md
>>>>>>>>>> 020-introduction.md
>>>>>>>>>> 030-preliminaries.md
>>>>>>>>>> 040-advanced.md
>>>>>>>>>>
>>>>>>>>>> so that if I later want to insert a chapter between say the third 
>>>>>>>>>> and fourth chapter I can number it 035-something.md and if I want to insert 
>>>>>>>>>> a chapter before that I can call it 033-whatever.md so that I don't need to 
>>>>>>>>>> renumber several files and globbing
>>>>>>>>>>
>>>>>>>>>> ``````shell
>>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>>> ``````
>>>>>>>>>>
>>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>>
>>>>>>>>>> /bpj
>>>>>>>>>>
>>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>
>>>>>>>>>>> hello
>>>>>>>>>>> i want to create pdf file from multiple html file. And the files 
>>>>>>>>>>> name are like this
>>>>>>>>>>> html1
>>>>>>>>>>> html2
>>>>>>>>>>> html3
>>>>>>>>>>>
>>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>>
>>>>>>>>>>> Thank you
>>>>>>>>>>>
>>>>>>>>>>> -- 
>>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com 
>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com 
>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>> To view this discussion on the web visit 
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com 
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>
>>>>>> To view this discussion on the web visit 
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com 
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>> .
>>>>>>
>>>>>>
>>>>>>> -- 
>>>>>> You received this message because you are subscribed to a topic in 
>>>>>> the Google Groups "pandoc-discuss" group.
>>>>>> To unsubscribe from this topic, visit 
>>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>>> .
>>>>>> To unsubscribe from this group and all its topics, send an email to 
>>>>>> pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>> To view this discussion on the web visit 
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com 
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>
>>>> To view this discussion on the web visit 
>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com 
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com 
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>
>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com 
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                             ` <1d652de4-3624-46a1-a671-cc73ce6417d4n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2022-09-13 20:21                                               ` BPJ
       [not found]                                                 ` <CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd=gNku+3tL8KXwTBtyA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: BPJ @ 2022-09-13 20:21 UTC (permalink / raw)
  To: pandoc-discuss

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

That's some cmd.exe dumbness I guess. I'm afraid I haven't used Windows for
over a decade.

Does anyone else know?

Den tis 13 sep. 2022 18:21mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:

> i am using this command
> pandoc -o my.epub *.html
> here is result
> pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid argument)
>
>
> On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:
>
>> ok thank you very much :)
>>
>> On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>>
>>> Attached. You will need perl >= 5.14. See the README.md file!
>>>
>>> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>> will you tell me which rename script you are using?
>>>> may be it will be more easy for me .
>>>> Thank you very much for your help :)
>>>>
>>>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>
>>>>> That's right. You don't need to prefix anything to 100 and up since
>>>>> you have less than 1000 files.
>>>>>
>>>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>
>>>>>> you means i rename like this
>>>>>> 001.html
>>>>>> 002.htnl
>>>>>> 003.html
>>>>>> 004.html
>>>>>> 005.html
>>>>>> 006.html
>>>>>> 007.html
>>>>>> 008.html
>>>>>> 009.html
>>>>>> 010.html
>>>>>>
>>>>>> check this 10th number is right ?
>>>>>> and what about when i reach 100 number of file and then 200 number of
>>>>>> file
>>>>>> because my files are more than 400
>>>>>>
>>>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>
>>>>>>> just type *.html (star included) and it will be as if you had listed
>>>>>>> all the .html files in the current directory in alphabetical order.
>>>>>>> It doesn't have to be the current directory: if the files are in a
>>>>>>> subdirectory html then html/*.html will work.
>>>>>>>
>>>>>>> Note that you shouldn't just prepend a zero to all file names: you
>>>>>>> should prepend two zeroes to files 0.html through 9.html and one zero to
>>>>>>> files 10.html through 99.html; the goal is for all file names to start in
>>>>>>> the same number of digits.
>>>>>>>
>>>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>
>>>>>>>> i can use also
>>>>>>>> i have software which will rename all files and ad 0 before numbers
>>>>>>>> but tell me will i write all files name in command or just from file one to
>>>>>>>> last number file ?
>>>>>>>>
>>>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>
>>>>>>>>> I would use a script to change the names to zero-padded format and
>>>>>>>>> then glob them.
>>>>>>>>>
>>>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>
>>>>>>>>>> i have more than 100 html files evan more than 400 html files and
>>>>>>>>>> my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>>>> so i can convert them all in single epub ?
>>>>>>>>>> and i need to write all file names in command ?
>>>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>>>
>>>>>>>>>>> Generally you can just list them on the command line and pandoc
>>>>>>>>>>> will concatenate them:
>>>>>>>>>>>
>>>>>>>>>>> ``````shell
>>>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>>>> ``````
>>>>>>>>>>>
>>>>>>>>>>> Globbing might work
>>>>>>>>>>>
>>>>>>>>>>> ``````shell
>>>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>>>> ``````
>>>>>>>>>>>
>>>>>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts
>>>>>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>>>>>
>>>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>>>
>>>>>>>>>>> so that there are two (or three) digits in every filename. I
>>>>>>>>>>> usually name my files using three digits with "gaps" *before* the actual
>>>>>>>>>>> name:
>>>>>>>>>>>
>>>>>>>>>>> 000-frontmatter.md
>>>>>>>>>>> 010-preface.md
>>>>>>>>>>> 020-introduction.md
>>>>>>>>>>> 030-preliminaries.md
>>>>>>>>>>> 040-advanced.md
>>>>>>>>>>>
>>>>>>>>>>> so that if I later want to insert a chapter between say the
>>>>>>>>>>> third and fourth chapter I can number it 035-something.md and if I want to
>>>>>>>>>>> insert a chapter before that I can call it 033-whatever.md so that I don't
>>>>>>>>>>> need to renumber several files and globbing
>>>>>>>>>>>
>>>>>>>>>>> ``````shell
>>>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>>>> ``````
>>>>>>>>>>>
>>>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>>>
>>>>>>>>>>> /bpj
>>>>>>>>>>>
>>>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>
>>>>>>>>>>>> hello
>>>>>>>>>>>> i want to create pdf file from multiple html file. And the
>>>>>>>>>>>> files name are like this
>>>>>>>>>>>> html1
>>>>>>>>>>>> html2
>>>>>>>>>>>> html3
>>>>>>>>>>>>
>>>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>>>
>>>>>>>>>>>> Thank you
>>>>>>>>>>>>
>>>>>>>>>>>> --
>>>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>> To view this discussion on the web visit
>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>
>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>>> .
>>>>>>>
>>>>>>>
>>>>>>>> --
>>>>>>> You received this message because you are subscribed to a topic in
>>>>>>> the Google Groups "pandoc-discuss" group.
>>>>>>> To unsubscribe from this topic, visit
>>>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>>>> .
>>>>>>> To unsubscribe from this group and all its topics, send an email to
>>>>>>> pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>
>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>
>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                 ` <CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd=gNku+3tL8KXwTBtyA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-13 20:32                                                   ` Sukil Etxenike arizaleta
       [not found]                                                     ` <82a6de71-9993-e2f4-1de8-b6f8a8ab8496-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: Sukil Etxenike arizaleta @ 2022-09-13 20:32 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

If powershell doesn't work, you could do:

1. Type:

```

for %D in (*.html) do (

echo %D >> list.txt

)

pandoc -o mi.epub < list.txt

```


I haven't tested this, but I think it should work. If it only takes one 
file, replace the newlines in list.txt with spaces.

Hth,

Sukil





El 13/09/2022 a las 22:21, BPJ escribió:
> That's some cmd.exe dumbness I guess. I'm afraid I haven't used 
> Windows for over a decade.
>
> Does anyone else know?
>
> Den tis 13 sep. 2022 18:21mr vicky <v.lonly007-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>     i am using this command
>     pandoc -o my.epub *.html
>     here is result
>     pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid
>     argument)
>
>
>     On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:
>
>         ok thank you very much :)
>
>         On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>
>             Attached. You will need perl >= 5.14. See the README.md file!
>
>             Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>                 will you tell me which rename script you are using?
>                 may be it will be more easy for me .
>                 Thank you very much for your help :)
>
>                 On Mon, 12 Sep 2022 at 11:40 pm, BPJ
>                 <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
>                     That's right. You don't need to prefix anything to
>                     100 and up since you have less than 1000 files.
>
>                     Den mån 12 sep. 2022 19:33mr vicky
>                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>                         you means i rename like this
>                         001.html
>                         002.htnl
>                         003.html
>                         004.html
>                         005.html
>                         006.html
>                         007.html
>                         008.html
>                         009.html
>                         010.html
>
>                         check this 10th number is right ?
>                         and what about when i reach 100 number of file
>                         and then 200 number of file
>                         because my files are more than 400
>
>                         On Mon, 12 Sep 2022 at 10:09 pm, BPJ
>                         <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>
>                             just type *.html (star included) and it
>                             will be as if you had listed all the .html
>                             files in the current directory in
>                             alphabetical order.
>                             It doesn't have to be the current
>                             directory: if the files are in a
>                             subdirectory html then html/*.html will work.
>
>                             Note that you shouldn't just prepend a
>                             zero to all file names: you should prepend
>                             two zeroes to files 0.html through 9.html
>                             and one zero to files 10.html through
>                             99.html; the goal is for all file names to
>                             start in the same number of digits.
>
>                             Den mån 12 sep. 2022 18:56mr vicky
>                             <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>                                 i can use also
>                                 i have software which will rename all
>                                 files and ad 0 before numbers but tell
>                                 me will i write all files name in
>                                 command or just from file one to last
>                                 number file ?
>
>                                 On Mon, 12 Sep 2022 at 9:52 pm, BPJ
>                                 <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>
>                                     I would use a script to change the
>                                     names to zero-padded format and
>                                     then glob them.
>
>                                     Den mån 12 sep. 2022 16:49mr vicky
>                                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>                                         i have more than 100 html
>                                         files evan more than 400 html
>                                         files and my all files name
>                                         are like this 1.html, 2.html
>                                         3.html 4.html
>                                         so i can convert them all in
>                                         single epub ?
>                                         and i need to write all file
>                                         names in command ?
>                                         On Friday, September 9, 2022
>                                         at 6:01:30 PM UTC+5 BPJ wrote:
>
>                                             Generally you can just
>                                             list them on the command
>                                             line and pandoc will
>                                             concatenate them:
>
>                                             ``````shell
>                                             pandoc -o all.pdf -f html
>                                             html1 html2 html3
>                                             ``````
>
>                                             Globbing might work
>
>                                             ``````shell
>                                             pandoc -o all.pdf -f html
>                                             html*
>                                             ``````
>
>                                             but note that the shell
>                                             sorts "alphabetically" so
>                                             html10 sorts before html2!
>                                             You might want to zero-pad
>                                             the numbers in the file names:
>
>                                             html00, html01 .. html09,
>                                             html10 .. html99
>
>                                             so that there are two (or
>                                             three) digits in every
>                                             filename. I usually name
>                                             my files using three
>                                             digits with "gaps"
>                                             *before* the actual name:
>
>                                             000-frontmatter.md
>                                             010-preface.md
>                                             020-introduction.md
>                                             030-preliminaries.md
>                                             040-advanced.md
>
>                                             so that if I later want to
>                                             insert a chapter between
>                                             say the third and fourth
>                                             chapter I can number it
>                                             035-something.md and if I
>                                             want to insert a chapter
>                                             before that I can call it
>                                             033-whatever.md so that I
>                                             don't need to renumber
>                                             several files and globbing
>
>                                             ``````shell
>                                             pandoc -o all.pdf *.md
>                                             ``````
>
>                                             will still give me all the
>                                             files in correct order.
>
>                                             /bpj
>
>                                             Den fre 9 sep. 2022
>                                             12:31mr vicky
>                                             <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>                                                 hello
>                                                 i want to create pdf
>                                                 file from multiple
>                                                 html file. And the
>                                                 files name are like this
>                                                 html1
>                                                 html2
>                                                 html3
>
>                                                 i want to convert them
>                                                 in single pdf or epub file
>                                                 please can you explain
>                                                 me command and way of
>                                                 doing this ?
>
>                                                 Thank you
>
>                                                 -- 
>                                                 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-discus...@googlegroups.com.
>                                                 To view this
>                                                 discussion on the web
>                                                 visit
>                                                 https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>                                                 <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
>                                         To view this discussion on the
>                                         web visit
>                                         https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>                                         <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>                                     To view this discussion on the web
>                                     visit
>                                     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>                                     <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>
>                                 To view this discussion on the web
>                                 visit
>                                 https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>                                 <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>
>
>                             -- 
>                             You received this message because you are
>                             subscribed to a topic in the Google Groups
>                             "pandoc-discuss" group.
>                             To unsubscribe from this topic, visit
>                             https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
>                             To unsubscribe from this group and all its
>                             topics, send an email to
>                             pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>                             To view this discussion on the web visit
>                             https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>                             <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>
>                         To view this discussion on the web visit
>                         https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>                         <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>                     To view this discussion on the web visit
>                     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>                     <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>
>                 To view this discussion on the web visit
>                 https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>                 <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>     <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com 
> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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/82a6de71-9993-e2f4-1de8-b6f8a8ab8496%40gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                     ` <82a6de71-9993-e2f4-1de8-b6f8a8ab8496-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2022-09-14  7:32                                                       ` mr vicky
       [not found]                                                         ` <4af1b08a-856b-43de-b473-476680e4236dn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-14  7:32 UTC (permalink / raw)
  To: pandoc-discuss


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

well i save it in text file in same directory where the html files are and 
then i ran command 
but its making epub of text file not html files 
here you can see attached files

On Wednesday, September 14, 2022 at 1:32:40 AM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
wrote:

> If powershell doesn't work, you could do:
>
> 1. Type:
>
> ```
>
> for %D in (*.html) do (
>
> echo %D >> list.txt
>
> )
>
> pandoc -o mi.epub < list.txt
>
> ```
>
>
> I haven't tested this, but I think it should work. If it only takes one 
> file, replace the newlines in list.txt with spaces.
>
> Hth,
>
> Sukil
>
>
>
>
>
> El 13/09/2022 a las 22:21, BPJ escribió:
>
> That's some cmd.exe dumbness I guess. I'm afraid I haven't used Windows 
> for over a decade. 
>
> Does anyone else know?
>
> Den tis 13 sep. 2022 18:21mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>
>> i am using this command 
>> pandoc -o my.epub *.html
>> here is result
>> pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid argument) 
>>
>>
>> On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:
>>
>>> ok thank you very much :)
>>>
>>> On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>>>
>>>> Attached. You will need perl >= 5.14. See the README.md file!
>>>>
>>>> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>
>>>>> will you tell me which rename script you are using? 
>>>>> may be it will be more easy for me .
>>>>> Thank you very much for your help :)
>>>>>
>>>>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>>
>>>>>> That's right. You don't need to prefix anything to 100 and up since 
>>>>>> you have less than 1000 files.
>>>>>>
>>>>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>> you means i rename like this
>>>>>>> 001.html
>>>>>>> 002.htnl
>>>>>>> 003.html
>>>>>>> 004.html
>>>>>>> 005.html
>>>>>>> 006.html
>>>>>>> 007.html
>>>>>>> 008.html
>>>>>>> 009.html
>>>>>>> 010.html
>>>>>>>
>>>>>>> check this 10th number is right ?
>>>>>>> and what about when i reach 100 number of file and then 200 number 
>>>>>>> of file
>>>>>>> because my files are more than 400 
>>>>>>>
>>>>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>
>>>>>>>> just type *.html (star included) and it will be as if you had 
>>>>>>>> listed all the .html files in the current directory in alphabetical order. 
>>>>>>>> It doesn't have to be the current directory: if the files are in a 
>>>>>>>> subdirectory html then html/*.html will work.
>>>>>>>>
>>>>>>>> Note that you shouldn't just prepend a zero to all file names: you 
>>>>>>>> should prepend two zeroes to files 0.html through 9.html and one zero to 
>>>>>>>> files 10.html through 99.html; the goal is for all file names to start in 
>>>>>>>> the same number of digits.
>>>>>>>>
>>>>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>
>>>>>>>>> i can use also 
>>>>>>>>> i have software which will rename all files and ad 0 before 
>>>>>>>>> numbers but tell me will i write all files name in command or just from 
>>>>>>>>> file one to last number file ?
>>>>>>>>>
>>>>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>>
>>>>>>>>>> I would use a script to change the names to zero-padded format 
>>>>>>>>>> and then glob them.
>>>>>>>>>>
>>>>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>
>>>>>>>>>>> i have more than 100 html files evan more than 400 html files 
>>>>>>>>>>> and my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>>>>> so i can convert them all in single epub ?
>>>>>>>>>>> and i need to write all file names in command ?
>>>>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Generally you can just list them on the command line and pandoc 
>>>>>>>>>>>> will concatenate them: 
>>>>>>>>>>>>
>>>>>>>>>>>> ``````shell
>>>>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>>>>> ``````
>>>>>>>>>>>>
>>>>>>>>>>>> Globbing might work
>>>>>>>>>>>>
>>>>>>>>>>>> ``````shell
>>>>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>>>>> ``````
>>>>>>>>>>>>
>>>>>>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts 
>>>>>>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>>>>>>
>>>>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>>>>
>>>>>>>>>>>> so that there are two (or three) digits in every filename. I 
>>>>>>>>>>>> usually name my files using three digits with "gaps" *before* the actual 
>>>>>>>>>>>> name:
>>>>>>>>>>>>
>>>>>>>>>>>> 000-frontmatter.md
>>>>>>>>>>>> 010-preface.md
>>>>>>>>>>>> 020-introduction.md
>>>>>>>>>>>> 030-preliminaries.md
>>>>>>>>>>>> 040-advanced.md
>>>>>>>>>>>>
>>>>>>>>>>>> so that if I later want to insert a chapter between say the 
>>>>>>>>>>>> third and fourth chapter I can number it 035-something.md and if I want to 
>>>>>>>>>>>> insert a chapter before that I can call it 033-whatever.md so that I don't 
>>>>>>>>>>>> need to renumber several files and globbing
>>>>>>>>>>>>
>>>>>>>>>>>> ``````shell
>>>>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>>>>> ``````
>>>>>>>>>>>>
>>>>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>>>>
>>>>>>>>>>>> /bpj
>>>>>>>>>>>>
>>>>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>>
>>>>>>>>>>>>> hello 
>>>>>>>>>>>>> i want to create pdf file from multiple html file. And the 
>>>>>>>>>>>>> files name are like this
>>>>>>>>>>>>> html1
>>>>>>>>>>>>> html2
>>>>>>>>>>>>> html3
>>>>>>>>>>>>>
>>>>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>>>>
>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>
>>>>>>>>>>>> -- 
>>>>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com 
>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com 
>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com 
>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>
>>>>>>>> To view this discussion on the web visit 
>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com 
>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>>>> .
>>>>>>>>
>>>>>>>>
>>>>>>>>> -- 
>>>>>>>> You received this message because you are subscribed to a topic in 
>>>>>>>> the Google Groups "pandoc-discuss" group.
>>>>>>>> To unsubscribe from this topic, visit 
>>>>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>>>>> .
>>>>>>>> To unsubscribe from this group and all its topics, send an email to 
>>>>>>>> pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>> To view this discussion on the web visit 
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com 
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>
>>>>>> To view this discussion on the web visit 
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com 
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>> To view this discussion on the web visit 
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com 
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>
>>>> To view this discussion on the web visit 
>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com 
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com 
>> <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com 
> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com.

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

[-- Attachment #2: mi.epub --]
[-- Type: application/x-zip, Size: 4407 bytes --]

[-- Attachment #3: Screenshot 2022-09-14 123101.jpg --]
[-- Type: image/jpeg, Size: 17101 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                         ` <4af1b08a-856b-43de-b473-476680e4236dn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2022-09-14  8:05                                                           ` Sukil Etxenike arizaleta
       [not found]                                                             ` <d2f43247-527f-b10a-7774-7f5837ccf6ac-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: Sukil Etxenike arizaleta @ 2022-09-14  8:05 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

First, delete that `list.txt`, and then: either paste the commands 
directly in cmd (right click the cmd window to paste directly or open a 
menu depending on your settings); or save it to `convert.bat`, replacing 
`%` with `%%` (so `%D` becomes `%%D`, then run `convert.bat`.


(Also, I think you know this, but just in case: the file doesn't have 
any `, I use them to mark codeblocks as in Markdown).

Hth,

Sukil


El 14/09/2022 a las 9:32, mr vicky escribió:
> well i save it in text file in same directory where the html files are 
> and then i ran command
> but its making epub of text file not html files
> here you can see attached files
>
> On Wednesday, September 14, 2022 at 1:32:40 AM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
> wrote:
>
>     If powershell doesn't work, you could do:
>
>     1. Type:
>
>     ```
>
>     for %D in (*.html) do (
>
>     echo %D >> list.txt
>
>     )
>
>     pandoc -o mi.epub < list.txt
>
>     ```
>
>
>     I haven't tested this, but I think it should work. If it only
>     takes one file, replace the newlines in list.txt with spaces.
>
>     Hth,
>
>     Sukil
>
>
>
>
>
>     El 13/09/2022 a las 22:21, BPJ escribió:
>>     That's some cmd.exe dumbness I guess. I'm afraid I haven't used
>>     Windows for over a decade.
>>
>>     Does anyone else know?
>>
>>     Den tis 13 sep. 2022 18:21mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>         i am using this command
>>         pandoc -o my.epub *.html
>>         here is result
>>         pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid
>>         argument)
>>
>>
>>         On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky
>>         wrote:
>>
>>             ok thank you very much :)
>>
>>             On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>>
>>                 Attached. You will need perl >= 5.14. See the
>>                 README.md file!
>>
>>                 Den mån 12 sep. 2022 20:51mr vicky
>>                 <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>                     will you tell me which rename script you are using?
>>                     may be it will be more easy for me .
>>                     Thank you very much for your help :)
>>
>>                     On Mon, 12 Sep 2022 at 11:40 pm, BPJ
>>                     <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>
>>                         That's right. You don't need to prefix
>>                         anything to 100 and up since you have less
>>                         than 1000 files.
>>
>>                         Den mån 12 sep. 2022 19:33mr vicky
>>                         <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>                             you means i rename like this
>>                             001.html
>>                             002.htnl
>>                             003.html
>>                             004.html
>>                             005.html
>>                             006.html
>>                             007.html
>>                             008.html
>>                             009.html
>>                             010.html
>>
>>                             check this 10th number is right ?
>>                             and what about when i reach 100 number of
>>                             file and then 200 number of file
>>                             because my files are more than 400
>>
>>                             On Mon, 12 Sep 2022 at 10:09 pm, BPJ
>>                             <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>
>>                                 just type *.html (star included) and
>>                                 it will be as if you had listed all
>>                                 the .html files in the current
>>                                 directory in alphabetical order.
>>                                 It doesn't have to be the current
>>                                 directory: if the files are in a
>>                                 subdirectory html then html/*.html
>>                                 will work.
>>
>>                                 Note that you shouldn't just prepend
>>                                 a zero to all file names: you should
>>                                 prepend two zeroes to files 0.html
>>                                 through 9.html and one zero to files
>>                                 10.html through 99.html; the goal is
>>                                 for all file names to start in the
>>                                 same number of digits.
>>
>>                                 Den mån 12 sep. 2022 18:56mr vicky
>>                                 <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>                                     i can use also
>>                                     i have software which will rename
>>                                     all files and ad 0 before numbers
>>                                     but tell me will i write all
>>                                     files name in command or just
>>                                     from file one to last number file ?
>>
>>                                     On Mon, 12 Sep 2022 at 9:52 pm,
>>                                     BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>
>>                                         I would use a script to
>>                                         change the names to
>>                                         zero-padded format and then
>>                                         glob them.
>>
>>                                         Den mån 12 sep. 2022 16:49mr
>>                                         vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>                                             i have more than 100 html
>>                                             files evan more than 400
>>                                             html files and my all
>>                                             files name are like this
>>                                             1.html, 2.html 3.html 4.html
>>                                             so i can convert them all
>>                                             in single epub ?
>>                                             and i need to write all
>>                                             file names in command ?
>>                                             On Friday, September 9,
>>                                             2022 at 6:01:30 PM UTC+5
>>                                             BPJ wrote:
>>
>>                                                 Generally you can
>>                                                 just list them on the
>>                                                 command line and
>>                                                 pandoc will
>>                                                 concatenate them:
>>
>>                                                 ``````shell
>>                                                 pandoc -o all.pdf -f
>>                                                 html html1 html2 html3
>>                                                 ``````
>>
>>                                                 Globbing might work
>>
>>                                                 ``````shell
>>                                                 pandoc -o all.pdf -f
>>                                                 html html*
>>                                                 ``````
>>
>>                                                 but note that the
>>                                                 shell sorts
>>                                                 "alphabetically" so
>>                                                 html10 sorts before
>>                                                 html2! You might want
>>                                                 to zero-pad the
>>                                                 numbers in the file
>>                                                 names:
>>
>>                                                 html00, html01 ..
>>                                                 html09, html10 .. html99
>>
>>                                                 so that there are two
>>                                                 (or three) digits in
>>                                                 every filename. I
>>                                                 usually name my files
>>                                                 using three digits
>>                                                 with "gaps" *before*
>>                                                 the actual name:
>>
>>                                                 000-frontmatter.md
>>                                                 010-preface.md
>>                                                 020-introduction.md
>>                                                 030-preliminaries.md
>>                                                 040-advanced.md
>>
>>                                                 so that if I later
>>                                                 want to insert a
>>                                                 chapter between say
>>                                                 the third and fourth
>>                                                 chapter I can number
>>                                                 it 035-something.md
>>                                                 and if I want to
>>                                                 insert a chapter
>>                                                 before that I can
>>                                                 call it
>>                                                 033-whatever.md so
>>                                                 that I don't need to
>>                                                 renumber several
>>                                                 files and globbing
>>
>>                                                 ``````shell
>>                                                 pandoc -o all.pdf *.md
>>                                                 ``````
>>
>>                                                 will still give me
>>                                                 all the files in
>>                                                 correct order.
>>
>>                                                 /bpj
>>
>>                                                 Den fre 9 sep. 2022
>>                                                 12:31mr vicky
>>                                                 <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>                                                 skrev:
>>
>>                                                     hello
>>                                                     i want to create
>>                                                     pdf file from
>>                                                     multiple html
>>                                                     file. And the
>>                                                     files name are
>>                                                     like this
>>                                                     html1
>>                                                     html2
>>                                                     html3
>>
>>                                                     i want to convert
>>                                                     them in single
>>                                                     pdf or epub file
>>                                                     please can you
>>                                                     explain me
>>                                                     command and way
>>                                                     of doing this ?
>>
>>                                                     Thank you
>>
>>                                                     -- 
>>                                                     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-discus...@googlegroups.com.
>>                                                     To view this
>>                                                     discussion on the
>>                                                     web visit
>>                                                     https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>                                                     <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...@googlegroups.com.
>>                                             To view this discussion
>>                                             on the web visit
>>                                             https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>                                             <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm.
>>                                         To view this discussion on
>>                                         the web visit
>>                                         https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>                                         <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
>>                                     To view this discussion on the
>>                                     web visit
>>                                     https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>                                     <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>
>>
>>                                 -- 
>>                                 You received this message because you
>>                                 are subscribed to a topic in the
>>                                 Google Groups "pandoc-discuss" group.
>>                                 To unsubscribe from this topic, visit
>>                                 https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
>>                                 To unsubscribe from this group and
>>                                 all its topics, send an email to
>>                                 pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>                                 To view this discussion on the web
>>                                 visit
>>                                 https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>                                 <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
>>                             To view this discussion on the web visit
>>                             https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>                             <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>                         To view this discussion on the web visit
>>                         https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>                         <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
>>                     To view this discussion on the web visit
>>                     https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>                     <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>         To view this discussion on the web visit
>>         https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>>         <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>     To view this discussion on the web visit
>>     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com
>>     <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com 
> <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/d2f43247-527f-b10a-7774-7f5837ccf6ac%40gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                             ` <d2f43247-527f-b10a-7774-7f5837ccf6ac-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2022-09-14  9:27                                                               ` mr vicky
       [not found]                                                                 ` <7e388223-7e02-419c-960d-429c29287cb6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-14  9:27 UTC (permalink / raw)
  To: pandoc-discuss


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

can you please write here exact command which i will past in cmd ?
i am trying to past your given command without reffer list.txt and i am 
getting error

On Wednesday, September 14, 2022 at 1:05:52 PM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
wrote:

> First, delete that `list.txt`, and then: either paste the commands 
> directly in cmd (right click the cmd window to paste directly or open a 
> menu depending on your settings); or save it to `convert.bat`, replacing 
> `%` with `%%` (so `%D` becomes `%%D`, then run `convert.bat`.
>
>
> (Also, I think you know this, but just in case: the file doesn't have any 
> `, I use them to mark codeblocks as in Markdown).
>
> Hth,
>
> Sukil
>
>
> El 14/09/2022 a las 9:32, mr vicky escribió:
>
> well i save it in text file in same directory where the html files are and 
> then i ran command  
> but its making epub of text file not html files 
> here you can see attached files
>
> On Wednesday, September 14, 2022 at 1:32:40 AM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
> wrote:
>
>> If powershell doesn't work, you could do:
>>
>> 1. Type:
>>
>> ```
>>
>> for %D in (*.html) do (
>>
>> echo %D >> list.txt
>>
>> )
>>
>> pandoc -o mi.epub < list.txt
>>
>> ```
>>
>>
>> I haven't tested this, but I think it should work. If it only takes one 
>> file, replace the newlines in list.txt with spaces.
>>
>> Hth,
>>
>> Sukil
>>
>>
>>
>>
>>
>> El 13/09/2022 a las 22:21, BPJ escribió:
>>
>> That's some cmd.exe dumbness I guess. I'm afraid I haven't used Windows 
>> for over a decade. 
>>
>> Does anyone else know?
>>
>> Den tis 13 sep. 2022 18:21mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>
>>> i am using this command 
>>> pandoc -o my.epub *.html
>>> here is result
>>> pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid argument) 
>>>
>>>
>>> On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:
>>>
>>>> ok thank you very much :)
>>>>
>>>> On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>>>>
>>>>> Attached. You will need perl >= 5.14. See the README.md file!
>>>>>
>>>>> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>
>>>>>> will you tell me which rename script you are using? 
>>>>>> may be it will be more easy for me .
>>>>>> Thank you very much for your help :)
>>>>>>
>>>>>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>>>
>>>>>>> That's right. You don't need to prefix anything to 100 and up since 
>>>>>>> you have less than 1000 files.
>>>>>>>
>>>>>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>
>>>>>>>> you means i rename like this
>>>>>>>> 001.html
>>>>>>>> 002.htnl
>>>>>>>> 003.html
>>>>>>>> 004.html
>>>>>>>> 005.html
>>>>>>>> 006.html
>>>>>>>> 007.html
>>>>>>>> 008.html
>>>>>>>> 009.html
>>>>>>>> 010.html
>>>>>>>>
>>>>>>>> check this 10th number is right ?
>>>>>>>> and what about when i reach 100 number of file and then 200 number 
>>>>>>>> of file
>>>>>>>> because my files are more than 400 
>>>>>>>>
>>>>>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>
>>>>>>>>> just type *.html (star included) and it will be as if you had 
>>>>>>>>> listed all the .html files in the current directory in alphabetical order. 
>>>>>>>>> It doesn't have to be the current directory: if the files are in a 
>>>>>>>>> subdirectory html then html/*.html will work.
>>>>>>>>>
>>>>>>>>> Note that you shouldn't just prepend a zero to all file names: you 
>>>>>>>>> should prepend two zeroes to files 0.html through 9.html and one zero to 
>>>>>>>>> files 10.html through 99.html; the goal is for all file names to start in 
>>>>>>>>> the same number of digits.
>>>>>>>>>
>>>>>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>
>>>>>>>>>> i can use also 
>>>>>>>>>> i have software which will rename all files and ad 0 before 
>>>>>>>>>> numbers but tell me will i write all files name in command or just from 
>>>>>>>>>> file one to last number file ?
>>>>>>>>>>
>>>>>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>>>
>>>>>>>>>>> I would use a script to change the names to zero-padded format 
>>>>>>>>>>> and then glob them.
>>>>>>>>>>>
>>>>>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>
>>>>>>>>>>>> i have more than 100 html files evan more than 400 html files 
>>>>>>>>>>>> and my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>>>>>> so i can convert them all in single epub ?
>>>>>>>>>>>> and i need to write all file names in command ?
>>>>>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Generally you can just list them on the command line and 
>>>>>>>>>>>>> pandoc will concatenate them: 
>>>>>>>>>>>>>
>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>
>>>>>>>>>>>>> Globbing might work
>>>>>>>>>>>>>
>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>
>>>>>>>>>>>>> but note that the shell sorts "alphabetically" so html10 sorts 
>>>>>>>>>>>>> before html2! You might want to zero-pad the numbers in the file names:
>>>>>>>>>>>>>
>>>>>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>>>>>
>>>>>>>>>>>>> so that there are two (or three) digits in every filename. I 
>>>>>>>>>>>>> usually name my files using three digits with "gaps" *before* the actual 
>>>>>>>>>>>>> name:
>>>>>>>>>>>>>
>>>>>>>>>>>>> 000-frontmatter.md
>>>>>>>>>>>>> 010-preface.md
>>>>>>>>>>>>> 020-introduction.md
>>>>>>>>>>>>> 030-preliminaries.md
>>>>>>>>>>>>> 040-advanced.md
>>>>>>>>>>>>>
>>>>>>>>>>>>> so that if I later want to insert a chapter between say the 
>>>>>>>>>>>>> third and fourth chapter I can number it 035-something.md and if I want to 
>>>>>>>>>>>>> insert a chapter before that I can call it 033-whatever.md so that I don't 
>>>>>>>>>>>>> need to renumber several files and globbing
>>>>>>>>>>>>>
>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>
>>>>>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>>>>>
>>>>>>>>>>>>> /bpj
>>>>>>>>>>>>>
>>>>>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> hello 
>>>>>>>>>>>>>> i want to create pdf file from multiple html file. And the 
>>>>>>>>>>>>>> files name are like this
>>>>>>>>>>>>>> html1
>>>>>>>>>>>>>> html2
>>>>>>>>>>>>>> html3
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>
>>>>>>>>>>>>> -- 
>>>>>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com 
>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com 
>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com 
>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>
>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com 
>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>>>>> .
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>> -- 
>>>>>>>>> You received this message because you are subscribed to a topic in 
>>>>>>>>> the Google Groups "pandoc-discuss" group.
>>>>>>>>> To unsubscribe from this topic, visit 
>>>>>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>>>>>> .
>>>>>>>>> To unsubscribe from this group and all its topics, send an email 
>>>>>>>>> to pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com 
>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>
>>>>>>> To view this discussion on the web visit 
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com 
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>> To view this discussion on the web visit 
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com 
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>
>>>>> To view this discussion on the web visit 
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com 
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com 
>>> <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com 
>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com 
> <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/7e388223-7e02-419c-960d-429c29287cb6n%40googlegroups.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                                 ` <7e388223-7e02-419c-960d-429c29287cb6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2022-09-14 11:53                                                                   ` Sukil Etxenike arizaleta
       [not found]                                                                     ` <f561266f-ad25-857c-73d0-f437df280970-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: Sukil Etxenike arizaleta @ 2022-09-14 11:53 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

Hi,

OK, this should work, I tested it and the command is correctly 
constructed. (Plus, no `list.txt` is required). Save this to 
`convert.bat`, and run it.

```

@ECHO OFF
SETLOCAL EnableDelayedExpansion
for %%D in (*.html) do (
set "FILES=!FILES! %%D"
)
pandoc -o mi.epub %FILES%
```

The issue was that I didn't remember Pandoc has no option to get files 
from stdin, it interprts its stdin always as file contents.

Hth,

Sukil


El 14/09/2022 a las 11:27, mr vicky escribió:
> can you please write here exact command which i will past in cmd ?
> i am trying to past your given command without reffer list.txt and i 
> am getting error
>
> On Wednesday, September 14, 2022 at 1:05:52 PM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
> wrote:
>
>     First, delete that `list.txt`, and then: either paste the commands
>     directly in cmd (right click the cmd window to paste directly or
>     open a menu depending on your settings); or save it to
>     `convert.bat`, replacing `%` with `%%` (so `%D` becomes `%%D`,
>     then run `convert.bat`.
>
>
>     (Also, I think you know this, but just in case: the file doesn't
>     have any `, I use them to mark codeblocks as in Markdown).
>
>     Hth,
>
>     Sukil
>
>
>     El 14/09/2022 a las 9:32, mr vicky escribió:
>>     well i save it in text file in same directory where the html
>>     files are and then i ran command
>>     but its making epub of text file not html files
>>     here you can see attached files
>>
>>     On Wednesday, September 14, 2022 at 1:32:40 AM UTC+5
>>     suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
>>
>>         If powershell doesn't work, you could do:
>>
>>         1. Type:
>>
>>         ```
>>
>>         for %D in (*.html) do (
>>
>>         echo %D >> list.txt
>>
>>         )
>>
>>         pandoc -o mi.epub < list.txt
>>
>>         ```
>>
>>
>>         I haven't tested this, but I think it should work. If it only
>>         takes one file, replace the newlines in list.txt with spaces.
>>
>>         Hth,
>>
>>         Sukil
>>
>>
>>
>>
>>
>>         El 13/09/2022 a las 22:21, BPJ escribió:
>>>         That's some cmd.exe dumbness I guess. I'm afraid I haven't
>>>         used Windows for over a decade.
>>>
>>>         Does anyone else know?
>>>
>>>         Den tis 13 sep. 2022 18:21mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>             i am using this command
>>>             pandoc -o my.epub *.html
>>>             here is result
>>>             pandoc.exe: *.html: openBinaryFile: invalid argument
>>>             (Invalid argument)
>>>
>>>
>>>             On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr
>>>             vicky wrote:
>>>
>>>                 ok thank you very much :)
>>>
>>>                 On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5
>>>                 BP wrote:
>>>
>>>                     Attached. You will need perl >= 5.14. See the
>>>                     README.md file!
>>>
>>>                     Den mån 12 sep. 2022 20:51mr vicky
>>>                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>                         will you tell me which rename script you are
>>>                         using?
>>>                         may be it will be more easy for me .
>>>                         Thank you very much for your help :)
>>>
>>>                         On Mon, 12 Sep 2022 at 11:40 pm, BPJ
>>>                         <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>
>>>                             That's right. You don't need to prefix
>>>                             anything to 100 and up since you have
>>>                             less than 1000 files.
>>>
>>>                             Den mån 12 sep. 2022 19:33mr vicky
>>>                             <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>                                 you means i rename like this
>>>                                 001.html
>>>                                 002.htnl
>>>                                 003.html
>>>                                 004.html
>>>                                 005.html
>>>                                 006.html
>>>                                 007.html
>>>                                 008.html
>>>                                 009.html
>>>                                 010.html
>>>
>>>                                 check this 10th number is right ?
>>>                                 and what about when i reach 100
>>>                                 number of file and then 200 number
>>>                                 of file
>>>                                 because my files are more than 400
>>>
>>>                                 On Mon, 12 Sep 2022 at 10:09 pm, BPJ
>>>                                 <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>
>>>                                     just type *.html (star included)
>>>                                     and it will be as if you had
>>>                                     listed all the .html files in
>>>                                     the current directory in
>>>                                     alphabetical order.
>>>                                     It doesn't have to be the
>>>                                     current directory: if the files
>>>                                     are in a subdirectory html then
>>>                                     html/*.html will work.
>>>
>>>                                     Note that you shouldn't just
>>>                                     prepend a zero to all file
>>>                                     names: you should prepend two
>>>                                     zeroes to files 0.html through
>>>                                     9.html and one zero to files
>>>                                     10.html through 99.html; the
>>>                                     goal is for all file names to
>>>                                     start in the same number of digits.
>>>
>>>                                     Den mån 12 sep. 2022 18:56mr
>>>                                     vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>                                         i can use also
>>>                                         i have software which will
>>>                                         rename all files and ad 0
>>>                                         before numbers but tell me
>>>                                         will i write all files name
>>>                                         in command or just from file
>>>                                         one to last number file ?
>>>
>>>                                         On Mon, 12 Sep 2022 at 9:52
>>>                                         pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>
>>>                                             I would use a script to
>>>                                             change the names to
>>>                                             zero-padded format and
>>>                                             then glob them.
>>>
>>>                                             Den mån 12 sep. 2022
>>>                                             16:49mr vicky
>>>                                             <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>                                                 i have more than 100
>>>                                                 html files evan more
>>>                                                 than 400 html files
>>>                                                 and my all files
>>>                                                 name are like this
>>>                                                 1.html, 2.html
>>>                                                 3.html 4.html
>>>                                                 so i can convert
>>>                                                 them all in single
>>>                                                 epub ?
>>>                                                 and i need to write
>>>                                                 all file names in
>>>                                                 command ?
>>>                                                 On Friday, September
>>>                                                 9, 2022 at 6:01:30
>>>                                                 PM UTC+5 BPJ wrote:
>>>
>>>                                                     Generally you
>>>                                                     can just list
>>>                                                     them on the
>>>                                                     command line and
>>>                                                     pandoc will
>>>                                                     concatenate them:
>>>
>>>                                                     ``````shell
>>>                                                     pandoc -o
>>>                                                     all.pdf -f html
>>>                                                     html1 html2 html3
>>>                                                     ``````
>>>
>>>                                                     Globbing might work
>>>
>>>                                                     ``````shell
>>>                                                     pandoc -o
>>>                                                     all.pdf -f html
>>>                                                     html*
>>>                                                     ``````
>>>
>>>                                                     but note that
>>>                                                     the shell sorts
>>>                                                     "alphabetically"
>>>                                                     so html10 sorts
>>>                                                     before html2!
>>>                                                     You might want
>>>                                                     to zero-pad the
>>>                                                     numbers in the
>>>                                                     file names:
>>>
>>>                                                     html00, html01
>>>                                                     .. html09,
>>>                                                     html10 .. html99
>>>
>>>                                                     so that there
>>>                                                     are two (or
>>>                                                     three) digits in
>>>                                                     every filename.
>>>                                                     I usually name
>>>                                                     my files using
>>>                                                     three digits
>>>                                                     with "gaps"
>>>                                                     *before* the
>>>                                                     actual name:
>>>
>>>                                                     000-frontmatter.md
>>>                                                     010-preface.md
>>>                                                     020-introduction.md
>>>                                                     030-preliminaries.md
>>>                                                     040-advanced.md
>>>
>>>                                                     so that if I
>>>                                                     later want to
>>>                                                     insert a chapter
>>>                                                     between say the
>>>                                                     third and fourth
>>>                                                     chapter I can
>>>                                                     number it
>>>                                                     035-something.md
>>>                                                     and if I want to
>>>                                                     insert a chapter
>>>                                                     before that I
>>>                                                     can call it
>>>                                                     033-whatever.md
>>>                                                     so that I don't
>>>                                                     need to renumber
>>>                                                     several files
>>>                                                     and globbing
>>>
>>>                                                     ``````shell
>>>                                                     pandoc -o
>>>                                                     all.pdf *.md
>>>                                                     ``````
>>>
>>>                                                     will still give
>>>                                                     me all the files
>>>                                                     in correct order.
>>>
>>>                                                     /bpj
>>>
>>>                                                     Den fre 9 sep.
>>>                                                     2022 12:31mr
>>>                                                     vicky
>>>                                                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>                                                     skrev:
>>>
>>>                                                         hello
>>>                                                         i want to
>>>                                                         create pdf
>>>                                                         file from
>>>                                                         multiple
>>>                                                         html file.
>>>                                                         And the
>>>                                                         files name
>>>                                                         are like this
>>>                                                         html1
>>>                                                         html2
>>>                                                         html3
>>>
>>>                                                         i want to
>>>                                                         convert them
>>>                                                         in single
>>>                                                         pdf or epub file
>>>                                                         please can
>>>                                                         you explain
>>>                                                         me command
>>>                                                         and way of
>>>                                                         doing this ?
>>>
>>>                                                         Thank you
>>>
>>>                                                         -- 
>>>                                                         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-discus...@googlegroups.com.
>>>                                                         To view this
>>>                                                         discussion
>>>                                                         on the web
>>>                                                         visit
>>>                                                         https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>                                                         <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...@googlegroups.com.
>>>                                                 To view this
>>>                                                 discussion on the
>>>                                                 web visit
>>>                                                 https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>                                                 <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...@googlegroups.com.
>>>                                             To view this discussion
>>>                                             on the web visit
>>>                                             https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>                                             <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...@googlegroups.com.
>>>
>>>                                         To view this discussion on
>>>                                         the web visit
>>>                                         https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>                                         <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>>
>>>
>>>                                     -- 
>>>                                     You received this message
>>>                                     because you are subscribed to a
>>>                                     topic in the Google Groups
>>>                                     "pandoc-discuss" group.
>>>                                     To unsubscribe from this topic,
>>>                                     visit
>>>                                     https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
>>>                                     To unsubscribe from this group
>>>                                     and all its topics, send an
>>>                                     email to
>>>                                     pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>                                     To view this discussion on the
>>>                                     web visit
>>>                                     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>                                     <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>
>>>                                 To view this discussion on the web
>>>                                 visit
>>>                                 https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>>                                 <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>                             To view this discussion on the web visit
>>>                             https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>>                             <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>
>>>                         To view this discussion on the web visit
>>>                         https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>>                         <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
>>>             To view this discussion on the web visit
>>>             https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>>>             <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>         To view this discussion on the web visit
>>>         https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com
>>>         <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>     To view this discussion on the web visit
>>     https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com
>>     <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/7e388223-7e02-419c-960d-429c29287cb6n%40googlegroups.com 
> <https://groups.google.com/d/msgid/pandoc-discuss/7e388223-7e02-419c-960d-429c29287cb6n%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/f561266f-ad25-857c-73d0-f437df280970%40gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                                     ` <f561266f-ad25-857c-73d0-f437df280970-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2022-09-14 12:34                                                                       ` mr vicky
       [not found]                                                                         ` <6be3dfec-e061-07a8-1add-05415105c955@gmail.com>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-14 12:34 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


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

i copied your code and past it on notepad and then save it convert.bat
i save that file in same directory where is html files are
after that i open this bat file then command window open and do nothing
evan i tried many time evan more than 10 minutes it is left open
i am using windows 11
see screenshot

On Wed, Sep 14, 2022 at 4:53 PM Sukil Etxenike arizaleta <
sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:

> Hi,
>
> OK, this should work, I tested it and the command is correctly
> constructed. (Plus, no `list.txt` is required). Save this to `convert.bat`,
> and run it.
>
> ```
>
> @ECHO OFF
> SETLOCAL EnableDelayedExpansion
> for %%D in (*.html) do (
> set "FILES=!FILES! %%D"
> )
> pandoc -o mi.epub %FILES%
> ```
>
> The issue was that I didn't remember Pandoc has no option to get files
> from stdin, it interprts its stdin always as file contents.
>
> Hth,
>
> Sukil
>
>
> El 14/09/2022 a las 11:27, mr vicky escribió:
>
> can you please write here exact command which i will past in cmd ?
> i am trying to past your given command without reffer list.txt and i am
> getting error
>
> On Wednesday, September 14, 2022 at 1:05:52 PM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
> wrote:
>
>> First, delete that `list.txt`, and then: either paste the commands
>> directly in cmd (right click the cmd window to paste directly or open a
>> menu depending on your settings); or save it to `convert.bat`, replacing
>> `%` with `%%` (so `%D` becomes `%%D`, then run `convert.bat`.
>>
>>
>> (Also, I think you know this, but just in case: the file doesn't have any
>> `, I use them to mark codeblocks as in Markdown).
>>
>> Hth,
>>
>> Sukil
>>
>>
>> El 14/09/2022 a las 9:32, mr vicky escribió:
>>
>> well i save it in text file in same directory where the html files are
>> and then i ran command
>> but its making epub of text file not html files
>> here you can see attached files
>>
>> On Wednesday, September 14, 2022 at 1:32:40 AM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
>> wrote:
>>
>>> If powershell doesn't work, you could do:
>>>
>>> 1. Type:
>>>
>>> ```
>>>
>>> for %D in (*.html) do (
>>>
>>> echo %D >> list.txt
>>>
>>> )
>>>
>>> pandoc -o mi.epub < list.txt
>>>
>>> ```
>>>
>>>
>>> I haven't tested this, but I think it should work. If it only takes one
>>> file, replace the newlines in list.txt with spaces.
>>>
>>> Hth,
>>>
>>> Sukil
>>>
>>>
>>>
>>>
>>>
>>> El 13/09/2022 a las 22:21, BPJ escribió:
>>>
>>> That's some cmd.exe dumbness I guess. I'm afraid I haven't used Windows
>>> for over a decade.
>>>
>>> Does anyone else know?
>>>
>>> Den tis 13 sep. 2022 18:21mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>
>>>> i am using this command
>>>> pandoc -o my.epub *.html
>>>> here is result
>>>> pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid argument)
>>>>
>>>>
>>>> On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:
>>>>
>>>>> ok thank you very much :)
>>>>>
>>>>> On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>>>>>
>>>>>> Attached. You will need perl >= 5.14. See the README.md file!
>>>>>>
>>>>>> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>> will you tell me which rename script you are using?
>>>>>>> may be it will be more easy for me .
>>>>>>> Thank you very much for your help :)
>>>>>>>
>>>>>>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>>>>
>>>>>>>> That's right. You don't need to prefix anything to 100 and up since
>>>>>>>> you have less than 1000 files.
>>>>>>>>
>>>>>>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>
>>>>>>>>> you means i rename like this
>>>>>>>>> 001.html
>>>>>>>>> 002.htnl
>>>>>>>>> 003.html
>>>>>>>>> 004.html
>>>>>>>>> 005.html
>>>>>>>>> 006.html
>>>>>>>>> 007.html
>>>>>>>>> 008.html
>>>>>>>>> 009.html
>>>>>>>>> 010.html
>>>>>>>>>
>>>>>>>>> check this 10th number is right ?
>>>>>>>>> and what about when i reach 100 number of file and then 200 number
>>>>>>>>> of file
>>>>>>>>> because my files are more than 400
>>>>>>>>>
>>>>>>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>>
>>>>>>>>>> just type *.html (star included) and it will be as if you had
>>>>>>>>>> listed all the .html files in the current directory in alphabetical order.
>>>>>>>>>> It doesn't have to be the current directory: if the files are in
>>>>>>>>>> a subdirectory html then html/*.html will work.
>>>>>>>>>>
>>>>>>>>>> Note that you shouldn't just prepend a zero to all file names:
>>>>>>>>>> you should prepend two zeroes to files 0.html through 9.html and one zero
>>>>>>>>>> to files 10.html through 99.html; the goal is for all file names to start
>>>>>>>>>> in the same number of digits.
>>>>>>>>>>
>>>>>>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>
>>>>>>>>>>> i can use also
>>>>>>>>>>> i have software which will rename all files and ad 0 before
>>>>>>>>>>> numbers but tell me will i write all files name in command or just from
>>>>>>>>>>> file one to last number file ?
>>>>>>>>>>>
>>>>>>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> I would use a script to change the names to zero-padded format
>>>>>>>>>>>> and then glob them.
>>>>>>>>>>>>
>>>>>>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>>
>>>>>>>>>>>>> i have more than 100 html files evan more than 400 html files
>>>>>>>>>>>>> and my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>>>>>>> so i can convert them all in single epub ?
>>>>>>>>>>>>> and i need to write all file names in command ?
>>>>>>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> Generally you can just list them on the command line and
>>>>>>>>>>>>>> pandoc will concatenate them:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Globbing might work
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> but note that the shell sorts "alphabetically" so html10
>>>>>>>>>>>>>> sorts before html2! You might want to zero-pad the numbers in the file
>>>>>>>>>>>>>> names:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> so that there are two (or three) digits in every filename. I
>>>>>>>>>>>>>> usually name my files using three digits with "gaps" *before* the actual
>>>>>>>>>>>>>> name:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> 000-frontmatter.md
>>>>>>>>>>>>>> 010-preface.md
>>>>>>>>>>>>>> 020-introduction.md
>>>>>>>>>>>>>> 030-preliminaries.md
>>>>>>>>>>>>>> 040-advanced.md
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> so that if I later want to insert a chapter between say the
>>>>>>>>>>>>>> third and fourth chapter I can number it 035-something.md and if I want to
>>>>>>>>>>>>>> insert a chapter before that I can call it 033-whatever.md so that I don't
>>>>>>>>>>>>>> need to renumber several files and globbing
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> /bpj
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> hello
>>>>>>>>>>>>>>> i want to create pdf file from multiple html file. And the
>>>>>>>>>>>>>>> files name are like this
>>>>>>>>>>>>>>> html1
>>>>>>>>>>>>>>> html2
>>>>>>>>>>>>>>> html3
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
>>>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>
>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>>>>>> .
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>> You received this message because you are subscribed to a topic
>>>>>>>>>> in the Google Groups "pandoc-discuss" group.
>>>>>>>>>> To unsubscribe from this topic, visit
>>>>>>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>>>>>>> .
>>>>>>>>>> To unsubscribe from this group and all its topics, send an email
>>>>>>>>>> to pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>
>>>>>>>> To view this discussion on the web visit
>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>
>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com
>> <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/7e388223-7e02-419c-960d-429c29287cb6n%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/7e388223-7e02-419c-960d-429c29287cb6n%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/f561266f-ad25-857c-73d0-f437df280970%40gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/f561266f-ad25-857c-73d0-f437df280970%40gmail.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/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.com.

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

[-- Attachment #2: Screenshot 2022-09-14 173001.jpg --]
[-- Type: image/jpeg, Size: 21749 bytes --]

[-- Attachment #3: Screenshot 2022-09-14 173104.jpg --]
[-- Type: image/jpeg, Size: 114503 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                                                 ` <CAH8MJH-nXQefsHvWvcdf039t35KALwAh4ihLhHfAW+hU4y-fFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-14 14:38                                                                                   ` Sukil Etxenike arizaleta
       [not found]                                                                                     ` <00f256e2-d010-4a6d-f9c4-a1b45e1400a3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: Sukil Etxenike arizaleta @ 2022-09-14 14:38 UTC (permalink / raw)
  To: pandoc-discuss

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

Sorry for the rest of the list, I accidentally broke the chain of 
messagees and two or three messages got lost (all messages are below).

You have to increase your pagefile. In control panel > System > Advanced 
options, there should be some way to do it. Check google though, as I'm 
sure you need to access more screens than these two to do it.

Hth,

Sukil


El 14/09/2022 a las 15:16, mr vicky escribió:
> i am not running any pandoc command manually
> pandoc command is already set in .bat file so i just double click to 
> open this bat file
>
> On Wed, Sep 14, 2022 at 5:54 PM Sukil Etxenike arizaleta 
> <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
>     Can you paste the pandoc command which is run? ((Maybe pressing
>     ctrl+m will help copying the output, press escape after copying to
>     exit that mode).
>
>     Thanks,
>
>     Sukil
>
>
>     El 14/09/2022 a las 14:51, mr vicky escribió:
>>     in old bat file it was not showing pandoc running in task manager
>>     then i removed first line and re-run bat file then command
>>     windows read all html files and then after few minutes window
>>     closed and not make epub file
>>
>>     On Wed, Sep 14, 2022 at 5:41 PM Sukil Etxenike arizaleta
>>     <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>
>>         See if pandoc is running in task manager. If not, close that
>>         window (maybe press Ctrl+C and enter first). Then, delete the
>>         first line from `convert.bat` and re-run it. Now, the last
>>         line shown should be the pandoc command. If it's correct,
>>         wait. If not, reply again and we'll try to help.
>>         Thanks,
>>         Sukil
>>
>>
>>         El 14/09/2022 a las 14:34, mr vicky escribió:
>>>         i copied your code and past it on notepad and then save it
>>>         convert.bat
>>>         i save that file in same directory where is html files are
>>>         after that i open this bat file then command window open and
>>>         do nothing
>>>         evan i tried many time evan more than 10 minutes it is left open
>>>         i am using windows 11
>>>         see screenshot
>>>
>>>         On Wed, Sep 14, 2022 at 4:53 PM Sukil Etxenike arizaleta
>>>         <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>
>>>             Hi,
>>>
>>>             OK, this should work, I tested it and the command is
>>>             correctly constructed. (Plus, no `list.txt` is
>>>             required). Save this to `convert.bat`, and run it.
>>>
>>>             ```
>>>
>>>             @ECHO OFF
>>>             SETLOCAL EnableDelayedExpansion
>>>             for %%D in (*.html) do (
>>>             set "FILES=!FILES! %%D"
>>>             )
>>>             pandoc -o mi.epub %FILES%
>>>             ```
>>>
>>>             The issue was that I didn't remember Pandoc has no
>>>             option to get files from stdin, it interprts its stdin
>>>             always as file contents.
>>>
>>>             Hth,
>>>
>>>             Sukil
>>>
>>>
>>>             El 14/09/2022 a las 11:27, mr vicky escribió:
>>>>             can you please write here exact command which i will
>>>>             past in cmd ?
>>>>             i am trying to past your given command without reffer
>>>>             list.txt and i am getting error
>>>>
>>>>             On Wednesday, September 14, 2022 at 1:05:52 PM UTC+5
>>>>             suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
>>>>
>>>>                 First, delete that `list.txt`, and then: either
>>>>                 paste the commands directly in cmd (right click the
>>>>                 cmd window to paste directly or open a menu
>>>>                 depending on your settings); or save it to
>>>>                 `convert.bat`, replacing `%` with `%%` (so `%D`
>>>>                 becomes `%%D`, then run `convert.bat`.
>>>>
>>>>
>>>>                 (Also, I think you know this, but just in case: the
>>>>                 file doesn't have any `, I use them to mark
>>>>                 codeblocks as in Markdown).
>>>>
>>>>                 Hth,
>>>>
>>>>                 Sukil
>>>>
>>>>
>>>>                 El 14/09/2022 a las 9:32, mr vicky escribió:
>>>>>                 well i save it in text file in same directory
>>>>>                 where the html files are and then i ran command
>>>>>                 but its making epub of text file not html files
>>>>>                 here you can see attached files
>>>>>
>>>>>                 On Wednesday, September 14, 2022 at 1:32:40 AM
>>>>>                 UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
>>>>>
>>>>>                     If powershell doesn't work, you could do:
>>>>>
>>>>>                     1. Type:
>>>>>
>>>>>                     ```
>>>>>
>>>>>                     for %D in (*.html) do (
>>>>>
>>>>>                     echo %D >> list.txt
>>>>>
>>>>>                     )
>>>>>
>>>>>                     pandoc -o mi.epub < list.txt
>>>>>
>>>>>                     ```
>>>>>
>>>>>
>>>>>                     I haven't tested this, but I think it should
>>>>>                     work. If it only takes one file, replace the
>>>>>                     newlines in list.txt with spaces.
>>>>>
>>>>>                     Hth,
>>>>>
>>>>>                     Sukil
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>                     El 13/09/2022 a las 22:21, BPJ escribió:
>>>>>>                     That's some cmd.exe dumbness I guess. I'm
>>>>>>                     afraid I haven't used Windows for over a decade.
>>>>>>
>>>>>>                     Does anyone else know?
>>>>>>
>>>>>>                     Den tis 13 sep. 2022 18:21mr vicky
>>>>>>                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>                         i am using this command
>>>>>>                         pandoc -o my.epub *.html
>>>>>>                         here is result
>>>>>>                         pandoc.exe: *.html: openBinaryFile:
>>>>>>                         invalid argument (Invalid argument)
>>>>>>
>>>>>>
>>>>>>                         On Tuesday, September 13, 2022 at 7:06:38
>>>>>>                         PM UTC+5 mr vicky wrote:
>>>>>>
>>>>>>                             ok thank you very much :)
>>>>>>
>>>>>>                             On Tuesday, September 13, 2022 at
>>>>>>                             6:02:54 PM UTC+5 BP wrote:
>>>>>>
>>>>>>                                 Attached. You will need perl >=
>>>>>>                                 5.14. See the README.md file!
>>>>>>
>>>>>>                                 Den mån 12 sep. 2022 20:51mr
>>>>>>                                 vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>                                     will you tell me which rename
>>>>>>                                     script you are using?
>>>>>>                                     may be it will be more easy
>>>>>>                                     for me .
>>>>>>                                     Thank you very much for your
>>>>>>                                     help :)
>>>>>>
>>>>>>                                     On Mon, 12 Sep 2022 at 11:40
>>>>>>                                     pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>>>
>>>>>>                                         That's right. You don't
>>>>>>                                         need to prefix anything
>>>>>>                                         to 100 and up since you
>>>>>>                                         have less than 1000 files.
>>>>>>
>>>>>>                                         Den mån 12 sep. 2022
>>>>>>                                         19:33mr vicky
>>>>>>                                         <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>                                             you means i rename
>>>>>>                                             like this
>>>>>>                                             001.html
>>>>>>                                             002.htnl
>>>>>>                                             003.html
>>>>>>                                             004.html
>>>>>>                                             005.html
>>>>>>                                             006.html
>>>>>>                                             007.html
>>>>>>                                             008.html
>>>>>>                                             009.html
>>>>>>                                             010.html
>>>>>>
>>>>>>                                             check this 10th
>>>>>>                                             number is right ?
>>>>>>                                             and what about when i
>>>>>>                                             reach 100 number of
>>>>>>                                             file and then 200
>>>>>>                                             number of file
>>>>>>                                             because my files are
>>>>>>                                             more than 400
>>>>>>
>>>>>>                                             On Mon, 12 Sep 2022
>>>>>>                                             at 10:09 pm, BPJ
>>>>>>                                             <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>
>>>>>>                                                 just type *.html
>>>>>>                                                 (star included)
>>>>>>                                                 and it will be as
>>>>>>                                                 if you had listed
>>>>>>                                                 all the .html
>>>>>>                                                 files in the
>>>>>>                                                 current directory
>>>>>>                                                 in alphabetical
>>>>>>                                                 order.
>>>>>>                                                 It doesn't have
>>>>>>                                                 to be the current
>>>>>>                                                 directory: if the
>>>>>>                                                 files are in a
>>>>>>                                                 subdirectory html
>>>>>>                                                 then html/*.html
>>>>>>                                                 will work.
>>>>>>
>>>>>>                                                 Note that you
>>>>>>                                                 shouldn't just
>>>>>>                                                 prepend a zero to
>>>>>>                                                 all file names:
>>>>>>                                                 you should
>>>>>>                                                 prepend two
>>>>>>                                                 zeroes to files
>>>>>>                                                 0.html through
>>>>>>                                                 9.html and one
>>>>>>                                                 zero to files
>>>>>>                                                 10.html through
>>>>>>                                                 99.html; the goal
>>>>>>                                                 is for all file
>>>>>>                                                 names to start in
>>>>>>                                                 the same number
>>>>>>                                                 of digits.
>>>>>>
>>>>>>                                                 Den mån 12 sep.
>>>>>>                                                 2022 18:56mr
>>>>>>                                                 vicky
>>>>>>                                                 <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>                                                 skrev:
>>>>>>
>>>>>>                                                     i can use also
>>>>>>                                                     i have
>>>>>>                                                     software
>>>>>>                                                     which will
>>>>>>                                                     rename all
>>>>>>                                                     files and ad
>>>>>>                                                     0 before
>>>>>>                                                     numbers but
>>>>>>                                                     tell me will
>>>>>>                                                     i write all
>>>>>>                                                     files name in
>>>>>>                                                     command or
>>>>>>                                                     just from
>>>>>>                                                     file one to
>>>>>>                                                     last number
>>>>>>                                                     file ?
>>>>>>
>>>>>>                                                     On Mon, 12
>>>>>>                                                     Sep 2022 at
>>>>>>                                                     9:52 pm, BPJ
>>>>>>                                                     <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org>
>>>>>>                                                     wrote:
>>>>>>
>>>>>>                                                         I would
>>>>>>                                                         use a
>>>>>>                                                         script to
>>>>>>                                                         change
>>>>>>                                                         the names
>>>>>>                                                         to
>>>>>>                                                         zero-padded
>>>>>>                                                         format
>>>>>>                                                         and then
>>>>>>                                                         glob them.
>>>>>>
>>>>>>                                                         Den mån
>>>>>>                                                         12 sep.
>>>>>>                                                         2022
>>>>>>                                                         16:49mr
>>>>>>                                                         vicky
>>>>>>                                                         <v.lon...@gmail.com>
>>>>>>                                                         skrev:
>>>>>>
>>>>>>                                                             i
>>>>>>                                                             have
>>>>>>                                                             more
>>>>>>                                                             than
>>>>>>                                                             100
>>>>>>                                                             html
>>>>>>                                                             files
>>>>>>                                                             evan
>>>>>>                                                             more
>>>>>>                                                             than
>>>>>>                                                             400
>>>>>>                                                             html
>>>>>>                                                             files
>>>>>>                                                             and
>>>>>>                                                             my
>>>>>>                                                             all
>>>>>>                                                             files
>>>>>>                                                             name
>>>>>>                                                             are
>>>>>>                                                             like
>>>>>>                                                             this
>>>>>>                                                             1.html,
>>>>>>                                                             2.html
>>>>>>                                                             3.html
>>>>>>                                                             4.html
>>>>>>                                                             so i
>>>>>>                                                             can
>>>>>>                                                             convert
>>>>>>                                                             them
>>>>>>                                                             all
>>>>>>                                                             in
>>>>>>                                                             single
>>>>>>                                                             epub ?
>>>>>>                                                             and i
>>>>>>                                                             need
>>>>>>                                                             to
>>>>>>                                                             write
>>>>>>                                                             all
>>>>>>                                                             file
>>>>>>                                                             names
>>>>>>                                                             in
>>>>>>                                                             command ?
>>>>>>                                                             On
>>>>>>                                                             Friday,
>>>>>>                                                             September
>>>>>>                                                             9,
>>>>>>                                                             2022
>>>>>>                                                             at
>>>>>>                                                             6:01:30
>>>>>>                                                             PM
>>>>>>                                                             UTC+5
>>>>>>                                                             BPJ
>>>>>>                                                             wrote:
>>>>>>
>>>>>>                                                                 Generally
>>>>>>                                                                 you
>>>>>>                                                                 can
>>>>>>                                                                 just
>>>>>>                                                                 list
>>>>>>                                                                 them
>>>>>>                                                                 on
>>>>>>                                                                 the
>>>>>>                                                                 command
>>>>>>                                                                 line
>>>>>>                                                                 and
>>>>>>                                                                 pandoc
>>>>>>                                                                 will
>>>>>>                                                                 concatenate
>>>>>>                                                                 them:
>>>>>>
>>>>>>
>>>>>>                                                                 ``````shell
>>>>>>                                                                 pandoc
>>>>>>                                                                 -o
>>>>>>                                                                 all.pdf
>>>>>>                                                                 -f
>>>>>>                                                                 html
>>>>>>                                                                 html1
>>>>>>                                                                 html2
>>>>>>                                                                 html3
>>>>>>                                                                 ``````
>>>>>>
>>>>>>                                                                 Globbing
>>>>>>                                                                 might
>>>>>>                                                                 work
>>>>>>
>>>>>>                                                                 ``````shell
>>>>>>                                                                 pandoc
>>>>>>                                                                 -o
>>>>>>                                                                 all.pdf
>>>>>>                                                                 -f
>>>>>>                                                                 html
>>>>>>                                                                 html*
>>>>>>                                                                 ``````
>>>>>>
>>>>>>                                                                 but
>>>>>>                                                                 note
>>>>>>                                                                 that
>>>>>>                                                                 the
>>>>>>                                                                 shell
>>>>>>                                                                 sorts
>>>>>>                                                                 "alphabetically"
>>>>>>                                                                 so
>>>>>>                                                                 html10
>>>>>>                                                                 sorts
>>>>>>                                                                 before
>>>>>>                                                                 html2!
>>>>>>                                                                 You
>>>>>>                                                                 might
>>>>>>                                                                 want
>>>>>>                                                                 to
>>>>>>                                                                 zero-pad
>>>>>>                                                                 the
>>>>>>                                                                 numbers
>>>>>>                                                                 in
>>>>>>                                                                 the
>>>>>>                                                                 file
>>>>>>                                                                 names:
>>>>>>
>>>>>>                                                                 html00,
>>>>>>                                                                 html01
>>>>>>                                                                 ..
>>>>>>                                                                 html09,
>>>>>>                                                                 html10
>>>>>>                                                                 ..
>>>>>>                                                                 html99
>>>>>>
>>>>>>                                                                 so
>>>>>>                                                                 that
>>>>>>                                                                 there
>>>>>>                                                                 are
>>>>>>                                                                 two
>>>>>>                                                                 (or
>>>>>>                                                                 three)
>>>>>>                                                                 digits
>>>>>>                                                                 in
>>>>>>                                                                 every
>>>>>>                                                                 filename.
>>>>>>                                                                 I
>>>>>>                                                                 usually
>>>>>>                                                                 name
>>>>>>                                                                 my
>>>>>>                                                                 files
>>>>>>                                                                 using
>>>>>>                                                                 three
>>>>>>                                                                 digits
>>>>>>                                                                 with
>>>>>>                                                                 "gaps"
>>>>>>                                                                 *before*
>>>>>>                                                                 the
>>>>>>                                                                 actual
>>>>>>                                                                 name:
>>>>>>
>>>>>>                                                                 000-frontmatter.md
>>>>>>                                                                 010-preface.md
>>>>>>                                                                 020-introduction.md
>>>>>>                                                                 030-preliminaries.md
>>>>>>                                                                 040-advanced.md
>>>>>>
>>>>>>                                                                 so
>>>>>>                                                                 that
>>>>>>                                                                 if
>>>>>>                                                                 I
>>>>>>                                                                 later
>>>>>>                                                                 want
>>>>>>                                                                 to
>>>>>>                                                                 insert
>>>>>>                                                                 a
>>>>>>                                                                 chapter
>>>>>>                                                                 between
>>>>>>                                                                 say
>>>>>>                                                                 the
>>>>>>                                                                 third
>>>>>>                                                                 and
>>>>>>                                                                 fourth
>>>>>>                                                                 chapter
>>>>>>                                                                 I
>>>>>>                                                                 can
>>>>>>                                                                 number
>>>>>>                                                                 it
>>>>>>                                                                 035-something.md
>>>>>>                                                                 and
>>>>>>                                                                 if
>>>>>>                                                                 I
>>>>>>                                                                 want
>>>>>>                                                                 to
>>>>>>                                                                 insert
>>>>>>                                                                 a
>>>>>>                                                                 chapter
>>>>>>                                                                 before
>>>>>>                                                                 that
>>>>>>                                                                 I
>>>>>>                                                                 can
>>>>>>                                                                 call
>>>>>>                                                                 it
>>>>>>                                                                 033-whatever.md
>>>>>>                                                                 so
>>>>>>                                                                 that
>>>>>>                                                                 I
>>>>>>                                                                 don't
>>>>>>                                                                 need
>>>>>>                                                                 to
>>>>>>                                                                 renumber
>>>>>>                                                                 several
>>>>>>                                                                 files
>>>>>>                                                                 and
>>>>>>                                                                 globbing
>>>>>>
>>>>>>                                                                 ``````shell
>>>>>>                                                                 pandoc
>>>>>>                                                                 -o
>>>>>>                                                                 all.pdf
>>>>>>                                                                 *.md
>>>>>>                                                                 ``````
>>>>>>
>>>>>>                                                                 will
>>>>>>                                                                 still
>>>>>>                                                                 give
>>>>>>                                                                 me
>>>>>>                                                                 all
>>>>>>                                                                 the
>>>>>>                                                                 files
>>>>>>                                                                 in
>>>>>>                                                                 correct
>>>>>>                                                                 order.
>>>>>>
>>>>>>                                                                 /bpj
>>>>>>
>>>>>>                                                                 Den
>>>>>>                                                                 fre
>>>>>>                                                                 9
>>>>>>                                                                 sep.
>>>>>>                                                                 2022
>>>>>>                                                                 12:31mr
>>>>>>                                                                 vicky
>>>>>>                                                                 <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>                                                                 skrev:
>>>>>>
>>>>>>                                                                     hello
>>>>>>
>>>>>>                                                                     i
>>>>>>                                                                     want
>>>>>>                                                                     to
>>>>>>                                                                     create
>>>>>>                                                                     pdf
>>>>>>                                                                     file
>>>>>>                                                                     from
>>>>>>                                                                     multiple
>>>>>>                                                                     html
>>>>>>                                                                     file.
>>>>>>                                                                     And
>>>>>>                                                                     the
>>>>>>                                                                     files
>>>>>>                                                                     name
>>>>>>                                                                     are
>>>>>>                                                                     like
>>>>>>                                                                     this
>>>>>>                                                                     html1
>>>>>>                                                                     html2
>>>>>>                                                                     html3
>>>>>>
>>>>>>                                                                     i
>>>>>>                                                                     want
>>>>>>                                                                     to
>>>>>>                                                                     convert
>>>>>>                                                                     them
>>>>>>                                                                     in
>>>>>>                                                                     single
>>>>>>                                                                     pdf
>>>>>>                                                                     or
>>>>>>                                                                     epub
>>>>>>                                                                     file
>>>>>>                                                                     please
>>>>>>                                                                     can
>>>>>>                                                                     you
>>>>>>                                                                     explain
>>>>>>                                                                     me
>>>>>>                                                                     command
>>>>>>                                                                     and
>>>>>>                                                                     way
>>>>>>                                                                     of
>>>>>>                                                                     doing
>>>>>>                                                                     this
>>>>>>                                                                     ?
>>>>>>
>>>>>>                                                                     Thank
>>>>>>                                                                     you
>>>>>>
>>>>>>                                                                     --
>>>>>>
>>>>>>                                                                     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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>                                                                     To
>>>>>>                                                                     view
>>>>>>                                                                     this
>>>>>>                                                                     discussion
>>>>>>                                                                     on
>>>>>>                                                                     the
>>>>>>                                                                     web
>>>>>>                                                                     visit
>>>>>>                                                                     https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>                                                                     <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>                                                             To
>>>>>>                                                             view
>>>>>>                                                             this
>>>>>>                                                             discussion
>>>>>>                                                             on
>>>>>>                                                             the
>>>>>>                                                             web
>>>>>>                                                             visit
>>>>>>                                                             https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>>                                                             <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>                                                         To view
>>>>>>                                                         this
>>>>>>                                                         discussion
>>>>>>                                                         on the
>>>>>>                                                         web visit
>>>>>>                                                         https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>>>                                                         <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...@googlegroups.com.
>>>>>>
>>>>>>                                                     To view this
>>>>>>                                                     discussion on
>>>>>>                                                     the web visit
>>>>>>                                                     https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>>>>                                                     <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>>>>>
>>>>>>
>>>>>>                                                 -- 
>>>>>>                                                 You received this
>>>>>>                                                 message because
>>>>>>                                                 you are
>>>>>>                                                 subscribed to a
>>>>>>                                                 topic in the
>>>>>>                                                 Google Groups
>>>>>>                                                 "pandoc-discuss"
>>>>>>                                                 group.
>>>>>>                                                 To unsubscribe
>>>>>>                                                 from this topic,
>>>>>>                                                 visit
>>>>>>                                                 https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
>>>>>>                                                 To unsubscribe
>>>>>>                                                 from this group
>>>>>>                                                 and all its
>>>>>>                                                 topics, send an
>>>>>>                                                 email to
>>>>>>                                                 pandoc-discus...@googlegroups.com.
>>>>>>                                                 To view this
>>>>>>                                                 discussion on the
>>>>>>                                                 web visit
>>>>>>                                                 https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>>>>                                                 <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...@googlegroups.com.
>>>>>>
>>>>>>                                             To view this
>>>>>>                                             discussion on the web
>>>>>>                                             visit
>>>>>>                                             https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>>>>>                                             <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...@googlegroups.com.
>>>>>>                                         To view this discussion
>>>>>>                                         on the web visit
>>>>>>                                         https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>>>>>                                         <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm.
>>>>>>
>>>>>>                                     To view this discussion on
>>>>>>                                     the web visit
>>>>>>                                     https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>>>>>                                     <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>                         To view this discussion on the web visit
>>>>>>                         https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>>>>>>                         <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>                     To view this discussion on the web visit
>>>>>>                     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com
>>>>>>                     <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>                 To view this discussion on the web visit
>>>>>                 https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com
>>>>>                 <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/7e388223-7e02-419c-960d-429c29287cb6n%40googlegroups.com
>>>>             <https://groups.google.com/d/msgid/pandoc-discuss/7e388223-7e02-419c-960d-429c29287cb6n%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/f561266f-ad25-857c-73d0-f437df280970%40gmail.com
>>>             <https://groups.google.com/d/msgid/pandoc-discuss/f561266f-ad25-857c-73d0-f437df280970%40gmail.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/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.com
>>>         <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.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/00f256e2-d010-4a6d-f9c4-a1b45e1400a3%40gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                                                     ` <00f256e2-d010-4a6d-f9c4-a1b45e1400a3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2022-09-15  9:22                                                                                       ` mr vicky
       [not found]                                                                                         ` <CAH8MJH89+zqPN6q2rjFNi_TUGKW+hF+hYi=dzCScyJ_oRSNDmA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: mr vicky @ 2022-09-15  9:22 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

after change memory setting i re-run bat file and its convert epub file but
that file size is 3.62 mb and it is not readable in epub reading device
i tried ebook reader pro
i tried calibre
it is just loading and nothing shows anything

On Wed, Sep 14, 2022 at 7:38 PM Sukil Etxenike arizaleta <
sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:

> Sorry for the rest of the list, I accidentally broke the chain of
> messagees and two or three messages got lost (all messages are below).
>
> You have to increase your pagefile. In control panel > System > Advanced
> options, there should be some way to do it. Check google though, as I'm
> sure you need to access more screens than these two to do it.
>
> Hth,
>
> Sukil
>
>
> El 14/09/2022 a las 15:16, mr vicky escribió:
>
> i am not running any pandoc command manually
> pandoc command is already set in .bat file so i just double click to open
> this bat file
>
> On Wed, Sep 14, 2022 at 5:54 PM Sukil Etxenike arizaleta <
> sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
>> Can you paste the pandoc command which is run? ((Maybe pressing ctrl+m
>> will help copying the output, press escape after copying to exit that mode).
>>
>> Thanks,
>>
>> Sukil
>>
>>
>> El 14/09/2022 a las 14:51, mr vicky escribió:
>>
>> in old bat file it was not showing pandoc running in task manager then i
>> removed first line and re-run bat file then command windows read all html
>> files and then after few minutes window closed and not make epub file
>>
>> On Wed, Sep 14, 2022 at 5:41 PM Sukil Etxenike arizaleta <
>> sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>
>>> See if pandoc is running in task manager. If not, close that window
>>> (maybe press Ctrl+C and enter first). Then, delete the first line from
>>> `convert.bat` and re-run it. Now, the last line shown should be the pandoc
>>> command. If it's correct, wait. If not, reply again and we'll try to help.
>>> Thanks,
>>> Sukil
>>>
>>>
>>> El 14/09/2022 a las 14:34, mr vicky escribió:
>>>
>>> i copied your code and past it on notepad and then save it convert.bat
>>> i save that file in same directory where is html files are
>>> after that i open this bat file then command window open and do nothing
>>> evan i tried many time evan more than 10 minutes it is left open
>>> i am using windows 11
>>> see screenshot
>>>
>>> On Wed, Sep 14, 2022 at 4:53 PM Sukil Etxenike arizaleta <
>>> sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>
>>>> Hi,
>>>>
>>>> OK, this should work, I tested it and the command is correctly
>>>> constructed. (Plus, no `list.txt` is required). Save this to `convert.bat`,
>>>> and run it.
>>>>
>>>> ```
>>>>
>>>> @ECHO OFF
>>>> SETLOCAL EnableDelayedExpansion
>>>> for %%D in (*.html) do (
>>>> set "FILES=!FILES! %%D"
>>>> )
>>>> pandoc -o mi.epub %FILES%
>>>> ```
>>>>
>>>> The issue was that I didn't remember Pandoc has no option to get files
>>>> from stdin, it interprts its stdin always as file contents.
>>>>
>>>> Hth,
>>>>
>>>> Sukil
>>>>
>>>>
>>>> El 14/09/2022 a las 11:27, mr vicky escribió:
>>>>
>>>> can you please write here exact command which i will past in cmd ?
>>>> i am trying to past your given command without reffer list.txt and i am
>>>> getting error
>>>>
>>>> On Wednesday, September 14, 2022 at 1:05:52 PM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
>>>> wrote:
>>>>
>>>>> First, delete that `list.txt`, and then: either paste the commands
>>>>> directly in cmd (right click the cmd window to paste directly or open a
>>>>> menu depending on your settings); or save it to `convert.bat`, replacing
>>>>> `%` with `%%` (so `%D` becomes `%%D`, then run `convert.bat`.
>>>>>
>>>>>
>>>>> (Also, I think you know this, but just in case: the file doesn't have
>>>>> any `, I use them to mark codeblocks as in Markdown).
>>>>>
>>>>> Hth,
>>>>>
>>>>> Sukil
>>>>>
>>>>>
>>>>> El 14/09/2022 a las 9:32, mr vicky escribió:
>>>>>
>>>>> well i save it in text file in same directory where the html files are
>>>>> and then i ran command
>>>>> but its making epub of text file not html files
>>>>> here you can see attached files
>>>>>
>>>>> On Wednesday, September 14, 2022 at 1:32:40 AM UTC+5 suki...-Re5JQEeQqe8@public.gmane.orgm
>>>>> wrote:
>>>>>
>>>>>> If powershell doesn't work, you could do:
>>>>>>
>>>>>> 1. Type:
>>>>>>
>>>>>> ```
>>>>>>
>>>>>> for %D in (*.html) do (
>>>>>>
>>>>>> echo %D >> list.txt
>>>>>>
>>>>>> )
>>>>>>
>>>>>> pandoc -o mi.epub < list.txt
>>>>>>
>>>>>> ```
>>>>>>
>>>>>>
>>>>>> I haven't tested this, but I think it should work. If it only takes
>>>>>> one file, replace the newlines in list.txt with spaces.
>>>>>>
>>>>>> Hth,
>>>>>>
>>>>>> Sukil
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> El 13/09/2022 a las 22:21, BPJ escribió:
>>>>>>
>>>>>> That's some cmd.exe dumbness I guess. I'm afraid I haven't used
>>>>>> Windows for over a decade.
>>>>>>
>>>>>> Does anyone else know?
>>>>>>
>>>>>> Den tis 13 sep. 2022 18:21mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>
>>>>>>> i am using this command
>>>>>>> pandoc -o my.epub *.html
>>>>>>> here is result
>>>>>>> pandoc.exe: *.html: openBinaryFile: invalid argument (Invalid
>>>>>>> argument)
>>>>>>>
>>>>>>>
>>>>>>> On Tuesday, September 13, 2022 at 7:06:38 PM UTC+5 mr vicky wrote:
>>>>>>>
>>>>>>>> ok thank you very much :)
>>>>>>>>
>>>>>>>> On Tuesday, September 13, 2022 at 6:02:54 PM UTC+5 BP wrote:
>>>>>>>>
>>>>>>>>> Attached. You will need perl >= 5.14. See the README.md file!
>>>>>>>>>
>>>>>>>>> Den mån 12 sep. 2022 20:51mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>
>>>>>>>>>> will you tell me which rename script you are using?
>>>>>>>>>> may be it will be more easy for me .
>>>>>>>>>> Thank you very much for your help :)
>>>>>>>>>>
>>>>>>>>>> On Mon, 12 Sep 2022 at 11:40 pm, BPJ <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>>>>>>>
>>>>>>>>>>> That's right. You don't need to prefix anything to 100 and up
>>>>>>>>>>> since you have less than 1000 files.
>>>>>>>>>>>
>>>>>>>>>>> Den mån 12 sep. 2022 19:33mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>
>>>>>>>>>>>> you means i rename like this
>>>>>>>>>>>> 001.html
>>>>>>>>>>>> 002.htnl
>>>>>>>>>>>> 003.html
>>>>>>>>>>>> 004.html
>>>>>>>>>>>> 005.html
>>>>>>>>>>>> 006.html
>>>>>>>>>>>> 007.html
>>>>>>>>>>>> 008.html
>>>>>>>>>>>> 009.html
>>>>>>>>>>>> 010.html
>>>>>>>>>>>>
>>>>>>>>>>>> check this 10th number is right ?
>>>>>>>>>>>> and what about when i reach 100 number of file and then 200
>>>>>>>>>>>> number of file
>>>>>>>>>>>> because my files are more than 400
>>>>>>>>>>>>
>>>>>>>>>>>> On Mon, 12 Sep 2022 at 10:09 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> just type *.html (star included) and it will be as if you had
>>>>>>>>>>>>> listed all the .html files in the current directory in alphabetical order.
>>>>>>>>>>>>> It doesn't have to be the current directory: if the files are
>>>>>>>>>>>>> in a subdirectory html then html/*.html will work.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Note that you shouldn't just prepend a zero to all file names:
>>>>>>>>>>>>> you should prepend two zeroes to files 0.html through 9.html and one zero
>>>>>>>>>>>>> to files 10.html through 99.html; the goal is for all file names to start
>>>>>>>>>>>>> in the same number of digits.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Den mån 12 sep. 2022 18:56mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> i can use also
>>>>>>>>>>>>>> i have software which will rename all files and ad 0 before
>>>>>>>>>>>>>> numbers but tell me will i write all files name in command or just from
>>>>>>>>>>>>>> file one to last number file ?
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On Mon, 12 Sep 2022 at 9:52 pm, BPJ <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org> wrote:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> I would use a script to change the names to zero-padded
>>>>>>>>>>>>>>> format and then glob them.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Den mån 12 sep. 2022 16:49mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>>>>>>>>>> skrev:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> i have more than 100 html files evan more than 400 html
>>>>>>>>>>>>>>>> files and my all files name are like this 1.html, 2.html 3.html 4.html
>>>>>>>>>>>>>>>> so i can convert them all in single epub ?
>>>>>>>>>>>>>>>> and i need to write all file names in command ?
>>>>>>>>>>>>>>>> On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Generally you can just list them on the command line and
>>>>>>>>>>>>>>>>> pandoc will concatenate them:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>>>>>> pandoc -o all.pdf -f html html1 html2 html3
>>>>>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Globbing might work
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>>>>>> pandoc -o all.pdf -f html html*
>>>>>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> but note that the shell sorts "alphabetically" so html10
>>>>>>>>>>>>>>>>> sorts before html2! You might want to zero-pad the numbers in the file
>>>>>>>>>>>>>>>>> names:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> html00, html01 .. html09, html10 .. html99
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> so that there are two (or three) digits in every filename.
>>>>>>>>>>>>>>>>> I usually name my files using three digits with "gaps" *before* the actual
>>>>>>>>>>>>>>>>> name:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> 000-frontmatter.md
>>>>>>>>>>>>>>>>> 010-preface.md
>>>>>>>>>>>>>>>>> 020-introduction.md
>>>>>>>>>>>>>>>>> 030-preliminaries.md
>>>>>>>>>>>>>>>>> 040-advanced.md
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> so that if I later want to insert a chapter between say
>>>>>>>>>>>>>>>>> the third and fourth chapter I can number it 035-something.md and if I want
>>>>>>>>>>>>>>>>> to insert a chapter before that I can call it 033-whatever.md so that I
>>>>>>>>>>>>>>>>> don't need to renumber several files and globbing
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> ``````shell
>>>>>>>>>>>>>>>>> pandoc -o all.pdf *.md
>>>>>>>>>>>>>>>>> ``````
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> will still give me all the files in correct order.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> /bpj
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Den fre 9 sep. 2022 12:31mr vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>>>>>>>>>>>> skrev:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> hello
>>>>>>>>>>>>>>>>>> i want to create pdf file from multiple html file. And
>>>>>>>>>>>>>>>>>> the files name are like this
>>>>>>>>>>>>>>>>>> html1
>>>>>>>>>>>>>>>>>> html2
>>>>>>>>>>>>>>>>>> html3
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> i want to convert them in single pdf or epub file
>>>>>>>>>>>>>>>>>> please can you explain me command and way of doing this ?
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Thank you
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>>> 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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm
>>>>>>>>>>>>>>>> .
>>>>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
>>>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>>>
>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>>>>>>>>> .
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>> --
>>>>>>>>>>>>> You received this message because you are subscribed to a
>>>>>>>>>>>>> topic in the Google Groups "pandoc-discuss" group.
>>>>>>>>>>>>> To unsubscribe from this topic, visit
>>>>>>>>>>>>> https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe
>>>>>>>>>>>>> .
>>>>>>>>>>>>> To unsubscribe from this group and all its topics, send an
>>>>>>>>>>>>> email to pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>>>
>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>>>>
>>>>>>>>> To view this discussion on the web visit
>>>>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>>>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>
>>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com
>>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/7e388223-7e02-419c-960d-429c29287cb6n%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/7e388223-7e02-419c-960d-429c29287cb6n%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/f561266f-ad25-857c-73d0-f437df280970%40gmail.com
>>>> <https://groups.google.com/d/msgid/pandoc-discuss/f561266f-ad25-857c-73d0-f437df280970%40gmail.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/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.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/00f256e2-d010-4a6d-f9c4-a1b45e1400a3%40gmail.com
> <https://groups.google.com/d/msgid/pandoc-discuss/00f256e2-d010-4a6d-f9c4-a1b45e1400a3%40gmail.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/CAH8MJH89%2BzqPN6q2rjFNi_TUGKW%2BhF%2BhYi%3DdzCScyJ_oRSNDmA%40mail.gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: multiple html files
       [not found]                                                                                         ` <CAH8MJH89+zqPN6q2rjFNi_TUGKW+hF+hYi=dzCScyJ_oRSNDmA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2022-09-15 11:30                                                                                           ` Sukil Etxenike arizaleta
  0 siblings, 0 replies; 23+ messages in thread
From: Sukil Etxenike arizaleta @ 2022-09-15 11:30 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

Try Thorium Reader and see if it works (it renders epub file by file, 
this might help). Pandoc doesn't split files in the epub like in the 
source html. Pandoc first joins all source files (separated by a blank 
line) and then creates the epub. By default it splits chapters at level 
1 headings. If you want to make them smaller (which may help), set the 
`--epub-chapter-level` option to the heading level you want to split 
chapters at. If you want more complicated splitting, you'll have to use 
calibre's ebook-convert.


El 15/09/2022 a las 11:22, mr vicky escribió:
> after change memory setting i re-run bat file and its convert epub 
> file but that file size is 3.62 mb and it is not readable in epub 
> reading device
> i tried ebook reader pro
> i tried calibre
> it is just loading and nothing shows anything
>
> On Wed, Sep 14, 2022 at 7:38 PM Sukil Etxenike arizaleta 
> <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>
>     Sorry for the rest of the list, I accidentally broke the chain of
>     messagees and two or three messages got lost (all messages are below).
>
>     You have to increase your pagefile. In control panel > System >
>     Advanced options, there should be some way to do it. Check google
>     though, as I'm sure you need to access more screens than these two
>     to do it.
>
>     Hth,
>
>     Sukil
>
>
>     El 14/09/2022 a las 15:16, mr vicky escribió:
>>     i am not running any pandoc command manually
>>     pandoc command is already set in .bat file so i just double click
>>     to open this bat file
>>
>>     On Wed, Sep 14, 2022 at 5:54 PM Sukil Etxenike arizaleta
>>     <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>
>>         Can you paste the pandoc command which is run? ((Maybe
>>         pressing ctrl+m will help copying the output, press escape
>>         after copying to exit that mode).
>>
>>         Thanks,
>>
>>         Sukil
>>
>>
>>         El 14/09/2022 a las 14:51, mr vicky escribió:
>>>         in old bat file it was not showing pandoc running in task
>>>         manager then i removed first line and re-run bat file then
>>>         command windows read all html files and then after few
>>>         minutes window closed and not make epub file
>>>
>>>         On Wed, Sep 14, 2022 at 5:41 PM Sukil Etxenike arizaleta
>>>         <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>
>>>             See if pandoc is running in task manager. If not, close
>>>             that window (maybe press Ctrl+C and enter first). Then,
>>>             delete the first line from `convert.bat` and re-run it.
>>>             Now, the last line shown should be the pandoc command.
>>>             If it's correct, wait. If not, reply again and we'll try
>>>             to help.
>>>             Thanks,
>>>             Sukil
>>>
>>>
>>>             El 14/09/2022 a las 14:34, mr vicky escribió:
>>>>             i copied your code and past it on notepad and then save
>>>>             it convert.bat
>>>>             i save that file in same directory where is html files are
>>>>             after that i open this bat file then command window
>>>>             open and do nothing
>>>>             evan i tried many time evan more than 10 minutes it is
>>>>             left open
>>>>             i am using windows 11
>>>>             see screenshot
>>>>
>>>>             On Wed, Sep 14, 2022 at 4:53 PM Sukil Etxenike
>>>>             arizaleta <sukiletxe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>
>>>>                 Hi,
>>>>
>>>>                 OK, this should work, I tested it and the command
>>>>                 is correctly constructed. (Plus, no `list.txt` is
>>>>                 required). Save this to `convert.bat`, and run it.
>>>>
>>>>                 ```
>>>>
>>>>                 @ECHO OFF
>>>>                 SETLOCAL EnableDelayedExpansion
>>>>                 for %%D in (*.html) do (
>>>>                 set "FILES=!FILES! %%D"
>>>>                 )
>>>>                 pandoc -o mi.epub %FILES%
>>>>                 ```
>>>>
>>>>                 The issue was that I didn't remember Pandoc has no
>>>>                 option to get files from stdin, it interprts its
>>>>                 stdin always as file contents.
>>>>
>>>>                 Hth,
>>>>
>>>>                 Sukil
>>>>
>>>>
>>>>                 El 14/09/2022 a las 11:27, mr vicky escribió:
>>>>>                 can you please write here exact command which i
>>>>>                 will past in cmd ?
>>>>>                 i am trying to past your given command without
>>>>>                 reffer list.txt and i am getting error
>>>>>
>>>>>                 On Wednesday, September 14, 2022 at 1:05:52 PM
>>>>>                 UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
>>>>>
>>>>>                     First, delete that `list.txt`, and then:
>>>>>                     either paste the commands directly in cmd
>>>>>                     (right click the cmd window to paste directly
>>>>>                     or open a menu depending on your settings); or
>>>>>                     save it to `convert.bat`, replacing `%` with
>>>>>                     `%%` (so `%D` becomes `%%D`, then run
>>>>>                     `convert.bat`.
>>>>>
>>>>>
>>>>>                     (Also, I think you know this, but just in
>>>>>                     case: the file doesn't have any `, I use them
>>>>>                     to mark codeblocks as in Markdown).
>>>>>
>>>>>                     Hth,
>>>>>
>>>>>                     Sukil
>>>>>
>>>>>
>>>>>                     El 14/09/2022 a las 9:32, mr vicky escribió:
>>>>>>                     well i save it in text file in same directory
>>>>>>                     where the html files are and then i ran command
>>>>>>                     but its making epub of text file not html files
>>>>>>                     here you can see attached files
>>>>>>
>>>>>>                     On Wednesday, September 14, 2022 at 1:32:40
>>>>>>                     AM UTC+5 suki...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org wrote:
>>>>>>
>>>>>>                         If powershell doesn't work, you could do:
>>>>>>
>>>>>>                         1. Type:
>>>>>>
>>>>>>                         ```
>>>>>>
>>>>>>                         for %D in (*.html) do (
>>>>>>
>>>>>>                         echo %D >> list.txt
>>>>>>
>>>>>>                         )
>>>>>>
>>>>>>                         pandoc -o mi.epub < list.txt
>>>>>>
>>>>>>                         ```
>>>>>>
>>>>>>
>>>>>>                         I haven't tested this, but I think it
>>>>>>                         should work. If it only takes one file,
>>>>>>                         replace the newlines in list.txt with spaces.
>>>>>>
>>>>>>                         Hth,
>>>>>>
>>>>>>                         Sukil
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>                         El 13/09/2022 a las 22:21, BPJ escribió:
>>>>>>>                         That's some cmd.exe dumbness I guess.
>>>>>>>                         I'm afraid I haven't used Windows for
>>>>>>>                         over a decade.
>>>>>>>
>>>>>>>                         Does anyone else know?
>>>>>>>
>>>>>>>                         Den tis 13 sep. 2022 18:21mr vicky
>>>>>>>                         <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> skrev:
>>>>>>>
>>>>>>>                             i am using this command
>>>>>>>                             pandoc -o my.epub *.html
>>>>>>>                             here is result
>>>>>>>                             pandoc.exe: *.html: openBinaryFile:
>>>>>>>                             invalid argument (Invalid argument)
>>>>>>>
>>>>>>>
>>>>>>>                             On Tuesday, September 13, 2022 at
>>>>>>>                             7:06:38 PM UTC+5 mr vicky wrote:
>>>>>>>
>>>>>>>                                 ok thank you very much :)
>>>>>>>
>>>>>>>                                 On Tuesday, September 13, 2022
>>>>>>>                                 at 6:02:54 PM UTC+5 BP wrote:
>>>>>>>
>>>>>>>                                     Attached. You will need perl
>>>>>>>                                     >= 5.14. See the README.md file!
>>>>>>>
>>>>>>>                                     Den mån 12 sep. 2022 20:51mr
>>>>>>>                                     vicky <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>>                                     skrev:
>>>>>>>
>>>>>>>                                         will you tell me which
>>>>>>>                                         rename script you are
>>>>>>>                                         using?
>>>>>>>                                         may be it will be more
>>>>>>>                                         easy for me .
>>>>>>>                                         Thank you very much for
>>>>>>>                                         your help :)
>>>>>>>
>>>>>>>                                         On Mon, 12 Sep 2022 at
>>>>>>>                                         11:40 pm, BPJ
>>>>>>>                                         <mel...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>>>>>
>>>>>>>                                             That's right. You
>>>>>>>                                             don't need to prefix
>>>>>>>                                             anything to 100 and
>>>>>>>                                             up since you have
>>>>>>>                                             less than 1000 files.
>>>>>>>
>>>>>>>                                             Den mån 12 sep. 2022
>>>>>>>                                             19:33mr vicky
>>>>>>>                                             <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>>                                             skrev:
>>>>>>>
>>>>>>>                                                 you means i
>>>>>>>                                                 rename like this
>>>>>>>                                                 001.html
>>>>>>>                                                 002.htnl
>>>>>>>                                                 003.html
>>>>>>>                                                 004.html
>>>>>>>                                                 005.html
>>>>>>>                                                 006.html
>>>>>>>                                                 007.html
>>>>>>>                                                 008.html
>>>>>>>                                                 009.html
>>>>>>>                                                 010.html
>>>>>>>
>>>>>>>                                                 check this 10th
>>>>>>>                                                 number is right ?
>>>>>>>                                                 and what about
>>>>>>>                                                 when i reach 100
>>>>>>>                                                 number of file
>>>>>>>                                                 and then 200
>>>>>>>                                                 number of file
>>>>>>>                                                 because my files
>>>>>>>                                                 are more than 400
>>>>>>>
>>>>>>>                                                 On Mon, 12 Sep
>>>>>>>                                                 2022 at 10:09
>>>>>>>                                                 pm, BPJ
>>>>>>>                                                 <b...-J3H7GcXPSITLoDKTGw+V6w@public.gmane.org>
>>>>>>>                                                 wrote:
>>>>>>>
>>>>>>>                                                     just type
>>>>>>>                                                     *.html (star
>>>>>>>                                                     included)
>>>>>>>                                                     and it will
>>>>>>>                                                     be as if you
>>>>>>>                                                     had listed
>>>>>>>                                                     all the
>>>>>>>                                                     .html files
>>>>>>>                                                     in the
>>>>>>>                                                     current
>>>>>>>                                                     directory in
>>>>>>>                                                     alphabetical
>>>>>>>                                                     order.
>>>>>>>                                                     It doesn't
>>>>>>>                                                     have to be
>>>>>>>                                                     the current
>>>>>>>                                                     directory:
>>>>>>>                                                     if the files
>>>>>>>                                                     are in a
>>>>>>>                                                     subdirectory
>>>>>>>                                                     html then
>>>>>>>                                                     html/*.html
>>>>>>>                                                     will work.
>>>>>>>
>>>>>>>                                                     Note that
>>>>>>>                                                     you
>>>>>>>                                                     shouldn't
>>>>>>>                                                     just prepend
>>>>>>>                                                     a zero to
>>>>>>>                                                     all file
>>>>>>>                                                     names: you
>>>>>>>                                                     should
>>>>>>>                                                     prepend two
>>>>>>>                                                     zeroes to
>>>>>>>                                                     files 0.html
>>>>>>>                                                     through
>>>>>>>                                                     9.html and
>>>>>>>                                                     one zero to
>>>>>>>                                                     files
>>>>>>>                                                     10.html
>>>>>>>                                                     through
>>>>>>>                                                     99.html; the
>>>>>>>                                                     goal is for
>>>>>>>                                                     all file
>>>>>>>                                                     names to
>>>>>>>                                                     start in the
>>>>>>>                                                     same number
>>>>>>>                                                     of digits.
>>>>>>>
>>>>>>>                                                     Den mån 12
>>>>>>>                                                     sep. 2022
>>>>>>>                                                     18:56mr
>>>>>>>                                                     vicky
>>>>>>>                                                     <v.lon...@gmail.com>
>>>>>>>                                                     skrev:
>>>>>>>
>>>>>>>                                                         i can
>>>>>>>                                                         use also
>>>>>>>                                                         i have
>>>>>>>                                                         software
>>>>>>>                                                         which
>>>>>>>                                                         will
>>>>>>>                                                         rename
>>>>>>>                                                         all
>>>>>>>                                                         files
>>>>>>>                                                         and ad 0
>>>>>>>                                                         before
>>>>>>>                                                         numbers
>>>>>>>                                                         but tell
>>>>>>>                                                         me will
>>>>>>>                                                         i write
>>>>>>>                                                         all
>>>>>>>                                                         files
>>>>>>>                                                         name in
>>>>>>>                                                         command
>>>>>>>                                                         or just
>>>>>>>                                                         from
>>>>>>>                                                         file one
>>>>>>>                                                         to last
>>>>>>>                                                         number
>>>>>>>                                                         file ?
>>>>>>>
>>>>>>>                                                         On Mon,
>>>>>>>                                                         12 Sep
>>>>>>>                                                         2022 at
>>>>>>>                                                         9:52 pm,
>>>>>>>                                                         BPJ
>>>>>>>                                                         <b...@melroch.se>
>>>>>>>                                                         wrote:
>>>>>>>
>>>>>>>                                                             I
>>>>>>>                                                             would
>>>>>>>                                                             use
>>>>>>>                                                             a
>>>>>>>                                                             script
>>>>>>>                                                             to
>>>>>>>                                                             change
>>>>>>>                                                             the
>>>>>>>                                                             names
>>>>>>>                                                             to
>>>>>>>                                                             zero-padded
>>>>>>>                                                             format
>>>>>>>                                                             and
>>>>>>>                                                             then
>>>>>>>                                                             glob
>>>>>>>                                                             them.
>>>>>>>
>>>>>>>                                                             Den
>>>>>>>                                                             mån
>>>>>>>                                                             12
>>>>>>>                                                             sep.
>>>>>>>                                                             2022
>>>>>>>                                                             16:49mr
>>>>>>>                                                             vicky
>>>>>>>                                                             <v.lon...@gmail.com>
>>>>>>>                                                             skrev:
>>>>>>>
>>>>>>>                                                                 i
>>>>>>>                                                                 have
>>>>>>>                                                                 more
>>>>>>>                                                                 than
>>>>>>>                                                                 100
>>>>>>>                                                                 html
>>>>>>>                                                                 files
>>>>>>>                                                                 evan
>>>>>>>                                                                 more
>>>>>>>                                                                 than
>>>>>>>                                                                 400
>>>>>>>                                                                 html
>>>>>>>                                                                 files
>>>>>>>                                                                 and
>>>>>>>                                                                 my
>>>>>>>                                                                 all
>>>>>>>                                                                 files
>>>>>>>                                                                 name
>>>>>>>                                                                 are
>>>>>>>                                                                 like
>>>>>>>                                                                 this
>>>>>>>                                                                 1.html,
>>>>>>>                                                                 2.html
>>>>>>>                                                                 3.html
>>>>>>>                                                                 4.html
>>>>>>>                                                                 so
>>>>>>>                                                                 i
>>>>>>>                                                                 can
>>>>>>>                                                                 convert
>>>>>>>                                                                 them
>>>>>>>                                                                 all
>>>>>>>                                                                 in
>>>>>>>                                                                 single
>>>>>>>                                                                 epub
>>>>>>>                                                                 ?
>>>>>>>                                                                 and
>>>>>>>                                                                 i
>>>>>>>                                                                 need
>>>>>>>                                                                 to
>>>>>>>                                                                 write
>>>>>>>                                                                 all
>>>>>>>                                                                 file
>>>>>>>                                                                 names
>>>>>>>                                                                 in
>>>>>>>                                                                 command
>>>>>>>                                                                 ?
>>>>>>>                                                                 On
>>>>>>>                                                                 Friday,
>>>>>>>                                                                 September
>>>>>>>                                                                 9,
>>>>>>>                                                                 2022
>>>>>>>                                                                 at
>>>>>>>                                                                 6:01:30
>>>>>>>                                                                 PM
>>>>>>>                                                                 UTC+5
>>>>>>>                                                                 BPJ
>>>>>>>                                                                 wrote:
>>>>>>>
>>>>>>>                                                                     Generally
>>>>>>>                                                                     you
>>>>>>>                                                                     can
>>>>>>>                                                                     just
>>>>>>>                                                                     list
>>>>>>>                                                                     them
>>>>>>>                                                                     on
>>>>>>>                                                                     the
>>>>>>>                                                                     command
>>>>>>>                                                                     line
>>>>>>>                                                                     and
>>>>>>>                                                                     pandoc
>>>>>>>                                                                     will
>>>>>>>                                                                     concatenate
>>>>>>>                                                                     them:
>>>>>>>
>>>>>>>
>>>>>>>                                                                     ``````shell
>>>>>>>                                                                     pandoc
>>>>>>>                                                                     -o
>>>>>>>                                                                     all.pdf
>>>>>>>                                                                     -f
>>>>>>>                                                                     html
>>>>>>>                                                                     html1
>>>>>>>                                                                     html2
>>>>>>>                                                                     html3
>>>>>>>                                                                     ``````
>>>>>>>
>>>>>>>                                                                     Globbing
>>>>>>>                                                                     might
>>>>>>>                                                                     work
>>>>>>>
>>>>>>>                                                                     ``````shell
>>>>>>>                                                                     pandoc
>>>>>>>                                                                     -o
>>>>>>>                                                                     all.pdf
>>>>>>>                                                                     -f
>>>>>>>                                                                     html
>>>>>>>                                                                     html*
>>>>>>>                                                                     ``````
>>>>>>>
>>>>>>>                                                                     but
>>>>>>>                                                                     note
>>>>>>>                                                                     that
>>>>>>>                                                                     the
>>>>>>>                                                                     shell
>>>>>>>                                                                     sorts
>>>>>>>                                                                     "alphabetically"
>>>>>>>                                                                     so
>>>>>>>                                                                     html10
>>>>>>>                                                                     sorts
>>>>>>>                                                                     before
>>>>>>>                                                                     html2!
>>>>>>>                                                                     You
>>>>>>>                                                                     might
>>>>>>>                                                                     want
>>>>>>>                                                                     to
>>>>>>>                                                                     zero-pad
>>>>>>>                                                                     the
>>>>>>>                                                                     numbers
>>>>>>>                                                                     in
>>>>>>>                                                                     the
>>>>>>>                                                                     file
>>>>>>>                                                                     names:
>>>>>>>
>>>>>>>                                                                     html00,
>>>>>>>                                                                     html01
>>>>>>>                                                                     ..
>>>>>>>                                                                     html09,
>>>>>>>                                                                     html10
>>>>>>>                                                                     ..
>>>>>>>                                                                     html99
>>>>>>>
>>>>>>>                                                                     so
>>>>>>>                                                                     that
>>>>>>>                                                                     there
>>>>>>>                                                                     are
>>>>>>>                                                                     two
>>>>>>>                                                                     (or
>>>>>>>                                                                     three)
>>>>>>>                                                                     digits
>>>>>>>                                                                     in
>>>>>>>                                                                     every
>>>>>>>                                                                     filename.
>>>>>>>                                                                     I
>>>>>>>                                                                     usually
>>>>>>>                                                                     name
>>>>>>>                                                                     my
>>>>>>>                                                                     files
>>>>>>>                                                                     using
>>>>>>>                                                                     three
>>>>>>>                                                                     digits
>>>>>>>                                                                     with
>>>>>>>                                                                     "gaps"
>>>>>>>                                                                     *before*
>>>>>>>                                                                     the
>>>>>>>                                                                     actual
>>>>>>>                                                                     name:
>>>>>>>
>>>>>>>                                                                     000-frontmatter.md
>>>>>>>                                                                     010-preface.md
>>>>>>>                                                                     020-introduction.md
>>>>>>>                                                                     030-preliminaries.md
>>>>>>>                                                                     040-advanced.md
>>>>>>>
>>>>>>>                                                                     so
>>>>>>>                                                                     that
>>>>>>>                                                                     if
>>>>>>>                                                                     I
>>>>>>>                                                                     later
>>>>>>>                                                                     want
>>>>>>>                                                                     to
>>>>>>>                                                                     insert
>>>>>>>                                                                     a
>>>>>>>                                                                     chapter
>>>>>>>                                                                     between
>>>>>>>                                                                     say
>>>>>>>                                                                     the
>>>>>>>                                                                     third
>>>>>>>                                                                     and
>>>>>>>                                                                     fourth
>>>>>>>                                                                     chapter
>>>>>>>                                                                     I
>>>>>>>                                                                     can
>>>>>>>                                                                     number
>>>>>>>                                                                     it
>>>>>>>                                                                     035-something.md
>>>>>>>                                                                     and
>>>>>>>                                                                     if
>>>>>>>                                                                     I
>>>>>>>                                                                     want
>>>>>>>                                                                     to
>>>>>>>                                                                     insert
>>>>>>>                                                                     a
>>>>>>>                                                                     chapter
>>>>>>>                                                                     before
>>>>>>>                                                                     that
>>>>>>>                                                                     I
>>>>>>>                                                                     can
>>>>>>>                                                                     call
>>>>>>>                                                                     it
>>>>>>>                                                                     033-whatever.md
>>>>>>>                                                                     so
>>>>>>>                                                                     that
>>>>>>>                                                                     I
>>>>>>>                                                                     don't
>>>>>>>                                                                     need
>>>>>>>                                                                     to
>>>>>>>                                                                     renumber
>>>>>>>                                                                     several
>>>>>>>                                                                     files
>>>>>>>                                                                     and
>>>>>>>                                                                     globbing
>>>>>>>
>>>>>>>                                                                     ``````shell
>>>>>>>                                                                     pandoc
>>>>>>>                                                                     -o
>>>>>>>                                                                     all.pdf
>>>>>>>                                                                     *.md
>>>>>>>                                                                     ``````
>>>>>>>
>>>>>>>                                                                     will
>>>>>>>                                                                     still
>>>>>>>                                                                     give
>>>>>>>                                                                     me
>>>>>>>                                                                     all
>>>>>>>                                                                     the
>>>>>>>                                                                     files
>>>>>>>                                                                     in
>>>>>>>                                                                     correct
>>>>>>>                                                                     order.
>>>>>>>
>>>>>>>                                                                     /bpj
>>>>>>>
>>>>>>>                                                                     Den
>>>>>>>                                                                     fre
>>>>>>>                                                                     9
>>>>>>>                                                                     sep.
>>>>>>>                                                                     2022
>>>>>>>                                                                     12:31mr
>>>>>>>                                                                     vicky
>>>>>>>                                                                     <v.lon...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>>>>>>>                                                                     skrev:
>>>>>>>
>>>>>>>                                                                         hello
>>>>>>>
>>>>>>>                                                                         i
>>>>>>>                                                                         want
>>>>>>>                                                                         to
>>>>>>>                                                                         create
>>>>>>>                                                                         pdf
>>>>>>>                                                                         file
>>>>>>>                                                                         from
>>>>>>>                                                                         multiple
>>>>>>>                                                                         html
>>>>>>>                                                                         file.
>>>>>>>                                                                         And
>>>>>>>                                                                         the
>>>>>>>                                                                         files
>>>>>>>                                                                         name
>>>>>>>                                                                         are
>>>>>>>                                                                         like
>>>>>>>                                                                         this
>>>>>>>                                                                         html1
>>>>>>>                                                                         html2
>>>>>>>                                                                         html3
>>>>>>>
>>>>>>>                                                                         i
>>>>>>>                                                                         want
>>>>>>>                                                                         to
>>>>>>>                                                                         convert
>>>>>>>                                                                         them
>>>>>>>                                                                         in
>>>>>>>                                                                         single
>>>>>>>                                                                         pdf
>>>>>>>                                                                         or
>>>>>>>                                                                         epub
>>>>>>>                                                                         file
>>>>>>>                                                                         please
>>>>>>>                                                                         can
>>>>>>>                                                                         you
>>>>>>>                                                                         explain
>>>>>>>                                                                         me
>>>>>>>                                                                         command
>>>>>>>                                                                         and
>>>>>>>                                                                         way
>>>>>>>                                                                         of
>>>>>>>                                                                         doing
>>>>>>>                                                                         this
>>>>>>>                                                                         ?
>>>>>>>
>>>>>>>                                                                         Thank
>>>>>>>                                                                         you
>>>>>>>
>>>>>>>                                                                         --
>>>>>>>
>>>>>>>                                                                         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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>                                                                         To
>>>>>>>                                                                         view
>>>>>>>                                                                         this
>>>>>>>                                                                         discussion
>>>>>>>                                                                         on
>>>>>>>                                                                         the
>>>>>>>                                                                         web
>>>>>>>                                                                         visit
>>>>>>>                                                                         https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com
>>>>>>>                                                                         <https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>                                                                 To
>>>>>>>                                                                 view
>>>>>>>                                                                 this
>>>>>>>                                                                 discussion
>>>>>>>                                                                 on
>>>>>>>                                                                 the
>>>>>>>                                                                 web
>>>>>>>                                                                 visit
>>>>>>>                                                                 https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com
>>>>>>>                                                                 <https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>                                                             To
>>>>>>>                                                             view
>>>>>>>                                                             this
>>>>>>>                                                             discussion
>>>>>>>                                                             on
>>>>>>>                                                             the
>>>>>>>                                                             web
>>>>>>>                                                             visit
>>>>>>>                                                             https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.com
>>>>>>>                                                             <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhD84_%3DTbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>
>>>>>>>                                                         To view
>>>>>>>                                                         this
>>>>>>>                                                         discussion
>>>>>>>                                                         on the
>>>>>>>                                                         web
>>>>>>>                                                         visit
>>>>>>>                                                         https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com
>>>>>>>                                                         <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>>>>>>
>>>>>>>
>>>>>>>                                                     -- 
>>>>>>>                                                     You received
>>>>>>>                                                     this message
>>>>>>>                                                     because you
>>>>>>>                                                     are
>>>>>>>                                                     subscribed
>>>>>>>                                                     to a topic
>>>>>>>                                                     in the
>>>>>>>                                                     Google
>>>>>>>                                                     Groups
>>>>>>>                                                     "pandoc-discuss"
>>>>>>>                                                     group.
>>>>>>>                                                     To
>>>>>>>                                                     unsubscribe
>>>>>>>                                                     from this
>>>>>>>                                                     topic, visit
>>>>>>>                                                     https://groups.google.com/d/topic/pandoc-discuss/x3cVQPV2MWs/unsubscribe.
>>>>>>>                                                     To
>>>>>>>                                                     unsubscribe
>>>>>>>                                                     from this
>>>>>>>                                                     group and
>>>>>>>                                                     all its
>>>>>>>                                                     topics, send
>>>>>>>                                                     an email to
>>>>>>>                                                     pandoc-discus...@googlegroups.com.
>>>>>>>                                                     To view this
>>>>>>>                                                     discussion
>>>>>>>                                                     on the web
>>>>>>>                                                     visit
>>>>>>>                                                     https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.com
>>>>>>>                                                     <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ%40mail.gmail.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-discus...@googlegroups.com.
>>>>>>>
>>>>>>>                                                 To view this
>>>>>>>                                                 discussion on
>>>>>>>                                                 the web visit
>>>>>>>                                                 https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.com
>>>>>>>                                                 <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj%2BnuHxVppG%3DRC7jGi9g%40mail.gmail.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-discus...@googlegroups.com.
>>>>>>>                                             To view this
>>>>>>>                                             discussion on the
>>>>>>>                                             web visit
>>>>>>>                                             https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.com
>>>>>>>                                             <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhDaM033xRTbA%3DQ_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ%40mail.gmail.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-discus...@googlegroups.com.
>>>>>>>
>>>>>>>                                         To view this discussion
>>>>>>>                                         on the web visit
>>>>>>>                                         https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.com
>>>>>>>                                         <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH8Kwyj4wa-%2Bfn8wN-H5%3DE%2B6Ut7UROiMWvu%3DpfhepTgAGQ%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>                             To view this discussion on the web
>>>>>>>                             visit
>>>>>>>                             https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%40googlegroups.com
>>>>>>>                             <https://groups.google.com/d/msgid/pandoc-discuss/1d652de4-3624-46a1-a671-cc73ce6417d4n%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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>>                         To view this discussion on the web visit
>>>>>>>                         https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.com
>>>>>>>                         <https://groups.google.com/d/msgid/pandoc-discuss/CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd%3DgNku%2B3tL8KXwTBtyA%40mail.gmail.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-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>>>>>>                     To view this discussion on the web visit
>>>>>>                     https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%40googlegroups.com
>>>>>>                     <https://groups.google.com/d/msgid/pandoc-discuss/4af1b08a-856b-43de-b473-476680e4236dn%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/7e388223-7e02-419c-960d-429c29287cb6n%40googlegroups.com
>>>>>                 <https://groups.google.com/d/msgid/pandoc-discuss/7e388223-7e02-419c-960d-429c29287cb6n%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/f561266f-ad25-857c-73d0-f437df280970%40gmail.com
>>>>                 <https://groups.google.com/d/msgid/pandoc-discuss/f561266f-ad25-857c-73d0-f437df280970%40gmail.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/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.com
>>>>             <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH_4h2KdrJ4Bn2t1U8436THyOGODYxftePpzvznjP3BeGw%40mail.gmail.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/00f256e2-d010-4a6d-f9c4-a1b45e1400a3%40gmail.com
>     <https://groups.google.com/d/msgid/pandoc-discuss/00f256e2-d010-4a6d-f9c4-a1b45e1400a3%40gmail.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/CAH8MJH89%2BzqPN6q2rjFNi_TUGKW%2BhF%2BhYi%3DdzCScyJ_oRSNDmA%40mail.gmail.com 
> <https://groups.google.com/d/msgid/pandoc-discuss/CAH8MJH89%2BzqPN6q2rjFNi_TUGKW%2BhF%2BhYi%3DdzCScyJ_oRSNDmA%40mail.gmail.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/dff35bdd-34a7-f1ac-d48c-f99e65483b84%40gmail.com.

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

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2022-09-15 11:30 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-09 10:31 multiple html files mr vicky
     [not found] ` <caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-09-09 13:01   ` BPJ
     [not found]     ` <CADAJKhCJoJrJqj-VhrZ=amFPj0PwDT9XamEEp+LV=XXSRfLEnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-12 14:48       ` mr vicky
     [not found]         ` <2ec806d1-af88-4023-9d8b-fb2852935dfen-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-09-12 16:52           ` BPJ
     [not found]             ` <CADAJKhD84_=TbfO2hSQHpAnF3mbdTYc2fEG2CyumCPw9qC9Rsw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-12 16:55               ` mr vicky
     [not found]                 ` <CAH8MJH_e67u4YMwCEYpeBfDY09jDCvfduubLkRdRKRLqh8hbAg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-12 17:09                   ` BPJ
     [not found]                     ` <CADAJKhBme1EvsD6Lb0wYmBwx47AsPhpvu1Xp-ic12pnB_qM0GQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-12 17:32                       ` mr vicky
     [not found]                         ` <CAH8MJH9mZCoj2gkgBSfO-PAc4ptwjBPj+nuHxVppG=RC7jGi9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-12 18:00                           ` Daniel Staal
2022-09-12 18:40                           ` BPJ
     [not found]                             ` <CADAJKhDaM033xRTbA=Q_TGHnOhCpS2-o0Fck8sDYZr3CfKSPhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-12 18:50                               ` mr vicky
     [not found]                                 ` <CAH8MJH8Kwyj4wa-+fn8wN-H5=E+6Ut7UROiMWvu=pfhepTgAGQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-13 13:02                                   ` BPJ
     [not found]                                     ` <CADAJKhCmsHkjbgG+_O9dymRRr0hcO3ViEKLL78ekK+ObWV6srw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-13 14:06                                       ` mr vicky
     [not found]                                         ` <1dd12510-187f-429c-b976-1220427aa2ben-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-09-13 16:20                                           ` mr vicky
     [not found]                                             ` <1d652de4-3624-46a1-a671-cc73ce6417d4n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-09-13 20:21                                               ` BPJ
     [not found]                                                 ` <CADAJKhA1fgDgmVUVoAkzQDSqKm8e2Ytd=gNku+3tL8KXwTBtyA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-13 20:32                                                   ` Sukil Etxenike arizaleta
     [not found]                                                     ` <82a6de71-9993-e2f4-1de8-b6f8a8ab8496-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2022-09-14  7:32                                                       ` mr vicky
     [not found]                                                         ` <4af1b08a-856b-43de-b473-476680e4236dn-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-09-14  8:05                                                           ` Sukil Etxenike arizaleta
     [not found]                                                             ` <d2f43247-527f-b10a-7774-7f5837ccf6ac-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2022-09-14  9:27                                                               ` mr vicky
     [not found]                                                                 ` <7e388223-7e02-419c-960d-429c29287cb6n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2022-09-14 11:53                                                                   ` Sukil Etxenike arizaleta
     [not found]                                                                     ` <f561266f-ad25-857c-73d0-f437df280970-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2022-09-14 12:34                                                                       ` mr vicky
     [not found]                                                                         ` <6be3dfec-e061-07a8-1add-05415105c955@gmail.com>
     [not found]                                                                           ` <CAH8MJH92dG33zbnzHACrNtCMvAniT-k5TgMtehHqQedvbTmuPw@mail.gmail.com>
     [not found]                                                                             ` <660dfc41-9970-842d-5387-1ccbcae1a222@gmail.com>
     [not found]                                                                               ` <CAH8MJH-nXQefsHvWvcdf039t35KALwAh4ihLhHfAW+hU4y-fFQ@mail.gmail.com>
     [not found]                                                                                 ` <CAH8MJH-nXQefsHvWvcdf039t35KALwAh4ihLhHfAW+hU4y-fFQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-14 14:38                                                                                   ` Sukil Etxenike arizaleta
     [not found]                                                                                     ` <00f256e2-d010-4a6d-f9c4-a1b45e1400a3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2022-09-15  9:22                                                                                       ` mr vicky
     [not found]                                                                                         ` <CAH8MJH89+zqPN6q2rjFNi_TUGKW+hF+hYi=dzCScyJ_oRSNDmA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-09-15 11:30                                                                                           ` Sukil Etxenike arizaleta

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).