public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Can I eliminate newlines between elements in generated HTML?
@ 2016-04-08 16:23 Matt Haggard
       [not found] ` <c109325f-d784-4711-b7a5-f73e70f14edb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Haggard @ 2016-04-08 16:23 UTC (permalink / raw)
  To: pandoc-discuss


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

I have a filter that adds elements to code blocks (for bolding, italics, 
etc.).  We go markdown -> html -> pdf and have noticed that sometimes there 
is an extra erroneous space between these custom elements in the final PDF. 
 This breaks copying and pasting.

It's because pandoc adds newlines between some elements in the generated 
HTML.  This shows and example:

echo -e 
'<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' | 
pandoc -t html5

<div>

<pre><code>hello</code></pre>

<pre><code>world</code></pre>

</div>


Is there a way I can get the output of the above to instead be this?  (or 
even match the original input string)

echo -e 
'<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' | 
pandoc -t html5

<div>

<pre><code>hello</code></pre><pre><code>world</code></pre>

</div>

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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/c109325f-d784-4711-b7a5-f73e70f14edb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: Can I eliminate newlines between elements in generated HTML?
       [not found] ` <c109325f-d784-4711-b7a5-f73e70f14edb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2016-04-08 16:24   ` Matt Haggard
       [not found]     ` <5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Haggard @ 2016-04-08 16:24 UTC (permalink / raw)
  To: pandoc-discuss


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

Bah... google groups messed up the newlines, but maybe you get the idea?

On Friday, April 8, 2016 at 10:23:55 AM UTC-6, Matt Haggard wrote:
>
> I have a filter that adds elements to code blocks (for bolding, italics, 
> etc.).  We go markdown -> html -> pdf and have noticed that sometimes there 
> is an extra erroneous space between these custom elements in the final PDF. 
>  This breaks copying and pasting.
>
> It's because pandoc adds newlines between some elements in the generated 
> HTML.  This shows and example:
>
> echo -e 
> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' | 
> pandoc -t html5
>
> <div>
>
> <pre><code>hello</code></pre>
>
> <pre><code>world</code></pre>
>
> </div>
>
>
> Is there a way I can get the output of the above to instead be this?  (or 
> even match the original input string)
>
> echo -e 
> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' | 
> pandoc -t html5
>
> <div>
>
> <pre><code>hello</code></pre><pre><code>world</code></pre>
>
> </div>
>
> 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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: Can I eliminate newlines between elements in generated HTML?
       [not found]     ` <5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2016-04-08 16:35       ` Matthew Pickering
       [not found]         ` <CALuQ0m8ahc2a7+7x08--c+msno39oFxhhRxHdRa+vvwv6B6VZA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Matthew Pickering @ 2016-04-08 16:35 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Can you please describe what you are doing? You mention that you're
going markdown -> html -> pdf (why?)

The answer to your question is that pre is a block level element and
pandoc inserts newlines after each block from what I remember.

On Fri, Apr 8, 2016 at 5:24 PM, Matt Haggard <haggardii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Bah... google groups messed up the newlines, but maybe you get the idea?
>
> On Friday, April 8, 2016 at 10:23:55 AM UTC-6, Matt Haggard wrote:
>>
>> I have a filter that adds elements to code blocks (for bolding, italics,
>> etc.).  We go markdown -> html -> pdf and have noticed that sometimes there
>> is an extra erroneous space between these custom elements in the final PDF.
>> This breaks copying and pasting.
>>
>> It's because pandoc adds newlines between some elements in the generated
>> HTML.  This shows and example:
>>
>> echo -e
>> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' |
>> pandoc -t html5
>>
>> <div>
>>
>> <pre><code>hello</code></pre>
>>
>> <pre><code>world</code></pre>
>>
>> </div>
>>
>>
>> Is there a way I can get the output of the above to instead be this?  (or
>> even match the original input string)
>>
>> echo -e
>> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' |
>> pandoc -t html5
>>
>> <div>
>>
>> <pre><code>hello</code></pre><pre><code>world</code></pre>
>>
>> </div>
>>
>>
>> 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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.


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

* Re: Can I eliminate newlines between elements in generated HTML?
       [not found]         ` <CALuQ0m8ahc2a7+7x08--c+msno39oFxhhRxHdRa+vvwv6B6VZA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2016-04-08 16:40           ` Matt Haggard
       [not found]             ` <b5fcdda1-aac1-4390-84ee-18d745e7a06c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Haggard @ 2016-04-08 16:40 UTC (permalink / raw)
  To: pandoc-discuss


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

I've found a solution that I like (and doesn't involve complicating pandoc).

    pip install htmlmin
    echo -e 
'<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' | 
pandoc -t html5 | htmlmin -s

To answer your question:

We write markdown by hand, which contains code blocks full of custom 
elements (for highlighting).  Our custom format is <r:b>bold</r:b> within 
the codeblock.  Using a pandoc filter, those custom blocks get turned into 
this HTML:

    <pre class="bold"><code>bold</code></pre>

We then use http://www.princexml.com/ to convert from HTML to a PDF.

Thanks!

On Friday, April 8, 2016 at 10:35:10 AM UTC-6, Matthew Pickering wrote:
>
> Can you please describe what you are doing? You mention that you're 
> going markdown -> html -> pdf (why?) 
>
> The answer to your question is that pre is a block level element and 
> pandoc inserts newlines after each block from what I remember. 
>
> On Fri, Apr 8, 2016 at 5:24 PM, Matt Haggard <hagg...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
> <javascript:>> wrote: 
> > Bah... google groups messed up the newlines, but maybe you get the idea? 
> > 
> > On Friday, April 8, 2016 at 10:23:55 AM UTC-6, Matt Haggard wrote: 
> >> 
> >> I have a filter that adds elements to code blocks (for bolding, 
> italics, 
> >> etc.).  We go markdown -> html -> pdf and have noticed that sometimes 
> there 
> >> is an extra erroneous space between these custom elements in the final 
> PDF. 
> >> This breaks copying and pasting. 
> >> 
> >> It's because pandoc adds newlines between some elements in the 
> generated 
> >> HTML.  This shows and example: 
> >> 
> >> echo -e 
> >> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' 
> | 
> >> pandoc -t html5 
> >> 
> >> <div> 
> >> 
> >> <pre><code>hello</code></pre> 
> >> 
> >> <pre><code>world</code></pre> 
> >> 
> >> </div> 
> >> 
> >> 
> >> Is there a way I can get the output of the above to instead be this? 
>  (or 
> >> even match the original input string) 
> >> 
> >> echo -e 
> >> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' 
> | 
> >> pandoc -t html5 
> >> 
> >> <div> 
> >> 
> >> <pre><code>hello</code></pre><pre><code>world</code></pre> 
> >> 
> >> </div> 
> >> 
> >> 
> >> 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 <javascript:>. 
> > To post to this group, send email to pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> <javascript:>. 
> > To view this discussion on the web visit 
> > 
> https://groups.google.com/d/msgid/pandoc-discuss/5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b%40googlegroups.com. 
>
> > 
> > For more options, visit https://groups.google.com/d/optout. 
>

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/b5fcdda1-aac1-4390-84ee-18d745e7a06c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: Can I eliminate newlines between elements in generated HTML?
       [not found]             ` <b5fcdda1-aac1-4390-84ee-18d745e7a06c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2016-04-08 21:53               ` John MacFarlane
       [not found]                 ` <20160408215335.GA61469-jF64zX8BO091tJRe0FUodcM6rOWSkUom@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: John MacFarlane @ 2016-04-08 21:53 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Did you try

    pandoc --wrap=none


+++ Matt Haggard [Apr 08 16 09:40 ]:
>   I've found a solution that I like (and doesn't involve complicating
>   pandoc).
>       pip install htmlmin
>       echo -e
>   '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>'
>   | pandoc -t html5 | htmlmin -s
>   To answer your question:
>   We write markdown by hand, which contains code blocks full of custom
>   elements (for highlighting).  Our custom format is <r:b>bold</r:b>
>   within the codeblock.  Using a pandoc filter, those custom blocks get
>   turned into this HTML:
>       <pre class="bold"><code>bold</code></pre>
>   We then use http://www.princexml.com/ to convert from HTML to a PDF.
>   Thanks!
>   On Friday, April 8, 2016 at 10:35:10 AM UTC-6, Matthew Pickering wrote:
>
>     Can you please describe what you are doing? You mention that you're
>     going markdown -> html -> pdf (why?)
>     The answer to your question is that pre is a block level element and
>     pandoc inserts newlines after each block from what I remember.
>     On Fri, Apr 8, 2016 at 5:24 PM, Matt Haggard <[1]hagg...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>     wrote:
>     > Bah... google groups messed up the newlines, but maybe you get the
>     idea?
>     >
>     > On Friday, April 8, 2016 at 10:23:55 AM UTC-6, Matt Haggard wrote:
>     >>
>     >> I have a filter that adds elements to code blocks (for bolding,
>     italics,
>     >> etc.).  We go markdown -> html -> pdf and have noticed that
>     sometimes there
>     >> is an extra erroneous space between these custom elements in the
>     final PDF.
>     >> This breaks copying and pasting.
>     >>
>     >> It's because pandoc adds newlines between some elements in the
>     generated
>     >> HTML.  This shows and example:
>     >>
>     >> echo -e
>     >> '<div><pre><code>hello</code></pre><pre><code>world</code></
>     pre></div>' |
>     >> pandoc -t html5
>     >>
>     >> <div>
>     >>
>     >> <pre><code>hello</code></pre>
>     >>
>     >> <pre><code>world</code></pre>
>     >>
>     >> </div>
>     >>
>     >>
>     >> Is there a way I can get the output of the above to instead be
>     this?  (or
>     >> even match the original input string)
>     >>
>     >> echo -e
>     >> '<div><pre><code>hello</code></pre><pre><code>world</code></
>     pre></div>' |
>     >> pandoc -t html5
>     >>
>     >> <div>
>     >>
>     >> <pre><code>hello</code></pre><pre><code>world</code></pre>
>     >>
>     >> </div>
>     >>
>     >>
>     >> 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 [2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>     > To post to this group, send email to [3]pandoc-...@googlegroups.
>     com.
>     > To view this discussion on the web visit
>     > [4]https://groups.google.com/d/msgid/pandoc-discuss/5f012215-
>     b6af-4fa3-b8a7-e8ba2b51ac9b%40googlegroups.com.
>     >
>     > For more options, visit [5]https://groups.google.com/d/optout.
>
>   --
>   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 [6]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To post to this group, send email to
>   [7]pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To view this discussion on the web visit
>   [8]https://groups.google.com/d/msgid/pandoc-discuss/b5fcdda1-aac1-4390-
>   84ee-18d745e7a06c%40googlegroups.com.
>   For more options, visit [9]https://groups.google.com/d/optout.
>
>References
>
>   1. javascript:/
>   2. javascript:/
>   3. javascript:/
>   4. https://groups.google.com/d/msgid/pandoc-discuss/5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   5. https://groups.google.com/d/optout
>   6. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   7. mailto:pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   8. https://groups.google.com/d/msgid/pandoc-discuss/b5fcdda1-aac1-4390-84ee-18d745e7a06c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>   9. https://groups.google.com/d/optout


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

* Re: Can I eliminate newlines between elements in generated HTML?
       [not found]                 ` <20160408215335.GA61469-jF64zX8BO091tJRe0FUodcM6rOWSkUom@public.gmane.org>
@ 2016-04-08 22:53                   ` Matt Haggard
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Haggard @ 2016-04-08 22:53 UTC (permalink / raw)
  To: pandoc-discuss


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

We're on 1.15.0.6 which doesn't have --wrap=none but DOES have --no-wrap, 
which works.  Thank you!  (I don't really think of this is case as 
"wrapping" so didn't think to search for that)

On Friday, April 8, 2016 at 3:53:50 PM UTC-6, John MacFarlane wrote:
>
> Did you try 
>
>     pandoc --wrap=none 
>
>
> +++ Matt Haggard [Apr 08 16 09:40 ]: 
> >   I've found a solution that I like (and doesn't involve complicating 
> >   pandoc). 
> >       pip install htmlmin 
> >       echo -e 
> >   
> '<div><pre><code>hello</code></pre><pre><code>world</code></pre></div>' 
> >   | pandoc -t html5 | htmlmin -s 
> >   To answer your question: 
> >   We write markdown by hand, which contains code blocks full of custom 
> >   elements (for highlighting).  Our custom format is <r:b>bold</r:b> 
> >   within the codeblock.  Using a pandoc filter, those custom blocks get 
> >   turned into this HTML: 
> >       <pre class="bold"><code>bold</code></pre> 
> >   We then use http://www.princexml.com/ to convert from HTML to a PDF. 
> >   Thanks! 
> >   On Friday, April 8, 2016 at 10:35:10 AM UTC-6, Matthew Pickering 
> wrote: 
> > 
> >     Can you please describe what you are doing? You mention that you're 
> >     going markdown -> html -> pdf (why?) 
> >     The answer to your question is that pre is a block level element and 
> >     pandoc inserts newlines after each block from what I remember. 
> >     On Fri, Apr 8, 2016 at 5:24 PM, Matt Haggard <[1]hagg...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 
> >     wrote: 
> >     > Bah... google groups messed up the newlines, but maybe you get the 
> >     idea? 
> >     > 
> >     > On Friday, April 8, 2016 at 10:23:55 AM UTC-6, Matt Haggard wrote: 
> >     >> 
> >     >> I have a filter that adds elements to code blocks (for bolding, 
> >     italics, 
> >     >> etc.).  We go markdown -> html -> pdf and have noticed that 
> >     sometimes there 
> >     >> is an extra erroneous space between these custom elements in the 
> >     final PDF. 
> >     >> This breaks copying and pasting. 
> >     >> 
> >     >> It's because pandoc adds newlines between some elements in the 
> >     generated 
> >     >> HTML.  This shows and example: 
> >     >> 
> >     >> echo -e 
> >     >> '<div><pre><code>hello</code></pre><pre><code>world</code></ 
> >     pre></div>' | 
> >     >> pandoc -t html5 
> >     >> 
> >     >> <div> 
> >     >> 
> >     >> <pre><code>hello</code></pre> 
> >     >> 
> >     >> <pre><code>world</code></pre> 
> >     >> 
> >     >> </div> 
> >     >> 
> >     >> 
> >     >> Is there a way I can get the output of the above to instead be 
> >     this?  (or 
> >     >> even match the original input string) 
> >     >> 
> >     >> echo -e 
> >     >> '<div><pre><code>hello</code></pre><pre><code>world</code></ 
> >     pre></div>' | 
> >     >> pandoc -t html5 
> >     >> 
> >     >> <div> 
> >     >> 
> >     >> <pre><code>hello</code></pre><pre><code>world</code></pre> 
> >     >> 
> >     >> </div> 
> >     >> 
> >     >> 
> >     >> 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 [2]pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org 
> >     > To post to this group, send email to [3]pandoc-...@googlegroups. 
> >     com. 
> >     > To view this discussion on the web visit 
> >     > [4]https://groups.google.com/d/msgid/pandoc-discuss/5f012215- 
> >     b6af-4fa3-b8a7-e8ba2b51ac9b%40googlegroups.com. 
> >     > 
> >     > For more options, visit [5]https://groups.google.com/d/optout. 
> > 
> >   -- 
> >   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 [6]pandoc-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To post to this group, send email to 
> >   [7]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To view this discussion on the web visit 
> >   [8]
> https://groups.google.com/d/msgid/pandoc-discuss/b5fcdda1-aac1-4390- 
> >   84ee-18d745e7a06c%40googlegroups.com. 
> >   For more options, visit [9]https://groups.google.com/d/optout. 
> > 
> >References 
> > 
> >   1. javascript:/ 
> >   2. javascript:/ 
> >   3. javascript:/ 
> >   4. 
> https://groups.google.com/d/msgid/pandoc-discuss/5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org 
> >   5. https://groups.google.com/d/optout 
> >   6. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >   7. mailto:pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >   8. 
> https://groups.google.com/d/msgid/pandoc-discuss/b5fcdda1-aac1-4390-84ee-18d745e7a06c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >   9. https://groups.google.com/d/optout 
>
>

-- 
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 post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/6f4ab6c8-8a5d-4ebc-99c0-f6c55bbcb024%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

end of thread, other threads:[~2016-04-08 22:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-08 16:23 Can I eliminate newlines between elements in generated HTML? Matt Haggard
     [not found] ` <c109325f-d784-4711-b7a5-f73e70f14edb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2016-04-08 16:24   ` Matt Haggard
     [not found]     ` <5f012215-b6af-4fa3-b8a7-e8ba2b51ac9b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2016-04-08 16:35       ` Matthew Pickering
     [not found]         ` <CALuQ0m8ahc2a7+7x08--c+msno39oFxhhRxHdRa+vvwv6B6VZA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-04-08 16:40           ` Matt Haggard
     [not found]             ` <b5fcdda1-aac1-4390-84ee-18d745e7a06c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2016-04-08 21:53               ` John MacFarlane
     [not found]                 ` <20160408215335.GA61469-jF64zX8BO091tJRe0FUodcM6rOWSkUom@public.gmane.org>
2016-04-08 22:53                   ` Matt Haggard

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