<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.text.pandoc">
    <title>gmane.text.pandoc</title>
    <link>http://blog.gmane.org/gmane.text.pandoc</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6467"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6466"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6465"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6464"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6463"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6462"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6461"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6460"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6459"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6458"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6457"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6456"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6455"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6454"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6453"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6452"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6451"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6450"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6449"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.text.pandoc/6448"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6467">
    <title>tex_math_double_backslash: are spaces important?</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6467</link>
    <description>&lt;pre&gt;I have been experimenting with the tex_math_double_backslash extension, 
trying to get math to show up within a paragraph rather than as its own 
centered paragraph. In the process of this, I found what might be a bug 
when rendering to latex, but I'm not sure. This line of markdown:

Blah \\[\hat{p}\\] Blah \\[ \hat{p} \\] Blah \\(\hat{p}\\) Blah \\( \hat{p} 
\\) Blah

is rendered as the latex:

Blah \[\hat{p}\] Blah \[ \hat{p} \] Blah $\hat{p}$ Blah \textbackslash{}( \
hat{p} \textbackslash{}) Blah

The problem is with the \\( syntax. If I write it this way:

\\(\hat{p}\\)

it renders as expected:

$\hat{p}$

But when spaces are included after the ( and before the ), like so:

\\( \hat{p} \\)

then \textbackslash{} is inserted instead:

\textbackslash{}( \hat{p} \textbackslash{})

That ultimately causes pdflatex to fail with "! Package amsmath Error: \hat 
allowed only in math mode."

Is this a bug in pandoc, or am I violating the rules of tex math by 
inserting the spaces? Thanks for your help and for making pandoc freely 
usable. I am using pandoc 1.11.1.

Jason

&lt;/pre&gt;</description>
    <dc:creator>jjrob2-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-05-23T16:03:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6466">
    <title>Re: typeset algorithm in pandoc</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6466</link>
    <description>&lt;pre&gt;

Interesting. I wonder if anyone's come up with a "generic algorithm" Kate
syntax highlighting file...

&lt;/pre&gt;</description>
    <dc:creator>John Gabriele</dc:creator>
    <dc:date>2013-05-23T14:25:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6465">
    <title>Automatic line numbering for Literate Haskell?</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6465</link>
    <description>&lt;pre&gt;Hi,

I recently rediscovered the line numbering facilities for code of pandoc
and I'm wondering if there is support for automatically numbering the
code lines in a literate Haskell file.

That is, I want a file like

~~~~
This is `f`:


And this is `g`:


That's it.
~~~

to be converted to Markdown as:

~~~~~~~~~~~~
This is `f`:

~~~~ {.sourceCode .literate .haskell .numberLines startFrom="1"}
f x = x * x
~~~~

And this is `g`:

~~~~ {.sourceCode .literate .haskell .numberLines startFrom="2"}
g x = 2 * x
~~~~

That's it.
~~~~~~~~~~~~

(note the increased startFrom attribute)

If there is no support for this, I will just write my own plugin for it,
but wanted to ask first.

Kind Regards,
Björn

&lt;/pre&gt;</description>
    <dc:creator>Björn Peemöller</dc:creator>
    <dc:date>2013-05-23T07:44:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6464">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6464</link>
    <description>&lt;pre&gt;
Ooof. Right. It would be good if

    pandoc -s -o out.html a.txt b.txt c.txt

worked where a.txt, b.txt, and c.txt all contain metadata.

&lt;/pre&gt;</description>
    <dc:creator>John Gabriele</dc:creator>
    <dc:date>2013-05-21T21:04:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6463">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6463</link>
    <description>&lt;pre&gt;+++ Tillmann Rendel [May 21 13 21:43 ]:

Yes, though it needs to be defined what counts as merging.
(Does a subsequent field replace the earlier one's value,
or somehow get merged with it?)


Sorry, yes, I meant YAML.  (The Haskell library for YAML uses the
JSON types, which explains my slip.)

&lt;/pre&gt;</description>
    <dc:creator>John MacFarlane</dc:creator>
    <dc:date>2013-05-21T19:57:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6462">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6462</link>
    <description>&lt;pre&gt;Hi,

John MacFarlane wrote:

Another argument: Merging files would automatically merge the metadata 
from each of the files.

Also, wasn't it YAML metadata blocks, or is this about something else?

   Tillmann

&lt;/pre&gt;</description>
    <dc:creator>Tillmann Rendel</dc:creator>
    <dc:date>2013-05-21T19:43:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6461">
    <title>Re: Generate list labels like (a)?</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6461</link>
    <description>&lt;pre&gt;
Hi Peng,

copied from
http://stackoverflow.com/questions/1632005/ordered-list-html-lower-alpha-with-right-parentheses:

    CSS:

    ol {
      counter-reset: list;
    }
    ol li {
      list-style: none;
    }
    ol li:before {
      content: counter(list, lower-alpha) ") ";
      counter-increment: list;
    }

    HTML:

    &amp;lt;ol&amp;gt;
      &amp;lt;li&amp;gt;Number 1&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Number 2&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Number 3&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Number 4&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Number 5&amp;lt;/li&amp;gt;
      &amp;lt;li&amp;gt;Number 6&amp;lt;/li&amp;gt;
    &amp;lt;/ol&amp;gt;

It might not work in all browsers. And it won't work in Adobe Reader
Mobile (just in case you're aiming at ePub).

I hope it helps,


Pablo
&lt;/pre&gt;</description>
    <dc:creator>Pablo Rodríguez</dc:creator>
    <dc:date>2013-05-21T18:31:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6460">
    <title>Generate list labels like (a)?</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6460</link>
    <description>&lt;pre&gt;Hi,

If I use (a) in a list in a pandoc file, the generate html file has
the label "a". How to get the label as "(a)"? Thanks.

&lt;/pre&gt;</description>
    <dc:creator>Peng Yu</dc:creator>
    <dc:date>2013-05-21T16:04:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6459">
    <title>Re: nav.xhtml - How to not have it created</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6459</link>
    <description>&lt;pre&gt;Very true, but still seems like it should be a simple option to pandoc to 
just not make it in the first place, so I was hoping.   But then again, I 
haven't looked at the source code of pandoc to see how ingrained the 
building of the TOC is.

Thanks,
Eli


On Sunday, May 12, 2013 1:33:02 PM UTC-4, bonus...-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org wrote:

&lt;/pre&gt;</description>
    <dc:creator>Eli White</dc:creator>
    <dc:date>2013-05-21T15:11:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6458">
    <title>typeset algorithm in pandoc</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6458</link>
    <description>&lt;pre&gt;Hi,

I don't find a structure for typesetting algorithm. Something like the
following from latex is desire. Is there anything available in pandoc?

http://en.wikibooks.org/wiki/LaTeX/Algorithms

&lt;/pre&gt;</description>
    <dc:creator>Peng Yu</dc:creator>
    <dc:date>2013-05-21T14:27:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6457">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6457</link>
    <description>&lt;pre&gt;The point of embedding bibliography data in the markdown document is to allows for a self-contained markdown source: 

    pandoc example.md --bibliography example.md

Actual presentation of a bibliography would be done by processing the file.

Are there other practical use cases for embedded structured data? I don't know. Question pools for embedding into SCORM compliant HTML and LaTeX quizzes and exams? I can dream!

How do extant tools handle YAML blocks in files? My understanding was that the YAML standard allows data blocks anywhere, but I don't know if existing tools respect that. If the data blocks anywhere option is too expensive, processing-wise, and doesn't work with existing tools, then I don't see a compelling reason to allow it at this point.

&lt;/pre&gt;</description>
    <dc:creator>David Sanson</dc:creator>
    <dc:date>2013-05-21T05:46:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6456">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6456</link>
    <description>&lt;pre&gt;

On May 20, 2013, at 4:25 PM, John MacFarlane &amp;lt;fiddlosopher-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


Absolutely!

&lt;/pre&gt;</description>
    <dc:creator>Eric Watson</dc:creator>
    <dc:date>2013-05-20T21:45:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6455">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6455</link>
    <description>&lt;pre&gt;+++ Eric Watson [May 20 13 15:34 ]:

If you come up with a nice way of using pandoc to produce impress.js
slide shows, please let us know about it here!

&lt;/pre&gt;</description>
    <dc:creator>John MacFarlane</dc:creator>
    <dc:date>2013-05-20T21:25:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6454">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6454</link>
    <description>&lt;pre&gt;

On May 20, 2013, at 1:32 PM, John MacFarlane &amp;lt;fiddlosopher-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


Cool! I'll give it a whirl!

&lt;/pre&gt;</description>
    <dc:creator>Eric Watson</dc:creator>
    <dc:date>2013-05-20T20:34:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6453">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6453</link>
    <description>&lt;pre&gt;
I hear you, but I don't want a tool enforcing standards I (or others)
don't necessarily share. Which isn't to say there aren't good
arguments  for only allowing metadata in a few specific places, just
that I don't think disallowing me from putting metadata blocks at the
beginning of, say, each major section in a doc, should be Pandoc's
privilege...

c
--
Chris Lott &amp;lt;chris-qMDBG1KJBpwBXFe83j6qeQ&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

&lt;/pre&gt;</description>
    <dc:creator>Chris Lott</dc:creator>
    <dc:date>2013-05-20T19:48:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6452">
    <title>Re: Windows - new location?</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6452</link>
    <description>&lt;pre&gt;Hi Pierre,

You can install Pandoc to a different directory by setting APPLICATIONFOLDER parameter, for example:

    msiexec /i pandoc-1.11.1.msi ALLUSERS=1 APPLICATIONFOLDER="C:\Pandoc"

Best regards,
Fedor

On 19 May 2013, at 18:29, prouleau001-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org wrote:

&lt;/pre&gt;</description>
    <dc:creator>Fedor Sheremetyev</dc:creator>
    <dc:date>2013-05-20T18:55:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6451">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6451</link>
    <description>&lt;pre&gt;+++ Eric Watson [May 20 13 13:17 ]:

Well, you don't need metadata for this, since pandoc already allows you
to put attributes on headers, and headers can turn into divs if you use
--section-divs.

# See it rotate!  {#my-impressive-slide .step data-x="850" data-y="3000" data-rotate="90"}

&lt;/pre&gt;</description>
    <dc:creator>John MacFarlane</dc:creator>
    <dc:date>2013-05-20T18:32:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6450">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6450</link>
    <description>&lt;pre&gt;


I think "metadata anywhere" would lead to docs with metadata strewn about
the place. Also, I'd rather not need to use a special tool to show me all
the metadata in a given doc.

I like the idea of metadata only at the beginning of a doc because it seems
the neatest and cleanest way to go.

Sidenote: I don't have any experience using BibTeX. Could you please give
an example of what it would look like to include a bibliography (in, bibtex
format) in the (proposed) document metadata?

BTW: Instead of using metadata for bibliographic info, might it be better
to instead extend Pandoc to specifically have support for raw BibTeX (or
maybe create a special block syntax for a bibliography)? I mean, it seems
to be a pretty common need, and Pandoc already supports LaTeX math...

Thanks,
&lt;/pre&gt;</description>
    <dc:creator>John Gabriele</dc:creator>
    <dc:date>2013-05-20T18:31:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6449">
    <title>embedding multiple fonts in ePub</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6449</link>
    <description>&lt;pre&gt;Hi,

would it be possible to embed multiple fonts in an ePub file using the
argument only once? I mean something like:

--epub-embed-font=fonts/FreeSerif*.ttf

So it would be easier for the user.

Many thanks for your help,


Pablo
&lt;/pre&gt;</description>
    <dc:creator>Pablo Rodríguez</dc:creator>
    <dc:date>2013-05-20T18:21:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6448">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6448</link>
    <description>&lt;pre&gt;
On May 20, 2013, at 11:32 AM, John MacFarlane &amp;lt;fiddlosopher-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:


I secretly want pandoc to be able to produce HTML slides using [impress.js][1], which requires setting `data-*` attributes on each slide, like this: 

    &amp;lt;div id="my-impressive-slide" class="step" data-x="850" data-y="3000" data-rotate="90" data-scale="5"&amp;gt;
&amp;lt;p&amp;gt;See it rotate! See it scale! See it &amp;lt;em&amp;gt;move!&amp;lt;/em&amp;gt;&amp;lt;/p&amp;gt;
    &amp;lt;/div&amp;gt;

    &amp;lt;div id="my-next-big-slide" class="step" data-x="3500" data-y="2100" data-rotate="180" data-scale="6"&amp;gt;
        &amp;lt;p&amp;gt;Look, new metadata values!&amp;lt;/p&amp;gt;
    &amp;lt;/div&amp;gt;


If you could sprinkle metadata throughout a pandoc document, this might work nicely :)

    ---
    x: 850
    y: 3000
    rotate: 90
    scale: 5
    ...


    ## My Impressive Slide

    See it rotate! See it scale! See it *move!*


    ---
    x: 3500
    y: 2100
    rotate: 180
    scale: 6
    ...

    ## My Next Big Slide

    Look, new metadata values!



This is a pretty specialized use case, but the general idea of being able to provide (and change?) metadata at any point in the document seems like it could enable lots of cool new use cases.

Thanks for the great thinking on this tricky problem!

Eric


[1]https://github.com/bartaz/impress.js

&lt;/pre&gt;</description>
    <dc:creator>Eric Watson</dc:creator>
    <dc:date>2013-05-20T18:17:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.text.pandoc/6447">
    <title>Re: proposal for new metadata</title>
    <link>http://permalink.gmane.org/gmane.text.pandoc/6447</link>
    <description>&lt;pre&gt;
Are there other real use cases for additional metadata at the end of the document besides bibliography?

I think bibliography is use case on it own and has nothing to do with title, authors etc. It would probably make sense to have Markdown-like markup for bibliography (not BibTeX inside YAML) — so that document is readable “as is”. Also one might want to have bibliography items embedded in text near the place they are used (like footnotes).


Relying on Pandoc to extract metadata might be too restrictive. One might want to parse document with metadata via JavaScript code in web browser, for example.



&lt;/pre&gt;</description>
    <dc:creator>Fedor Sheremetyev</dc:creator>
    <dc:date>2013-05-20T17:41:16</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.text.pandoc">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.text.pandoc</link>
  </textinput>
</rdf:RDF>
