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...@googlegroups.com.
>     > 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...@googlegroups.com.
>   To post to this group, send email to
>   [7]pandoc-...@googlegroups.com.
>   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@googlegroups.com
>   5. https://groups.google.com/d/optout
>   6. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   7. mailto:pandoc-...@googlegroups.com
>   8. https://groups.google.com/d/msgid/pandoc-discuss/b5fcdda1-aac1-4390-84ee-18d745e7a06c@googlegroups.com?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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@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.