在页面底部或HTML部分有pandoc脚注吗?

时间:2016-03-31 10:22:48

标签: markdown pandoc

我开始在Markdown中使用内联脚注:

Some text^[an aside here]. More text.

当我使用pandoc导出到HTML时,它们出现在整个文档的末尾,但在PDF中它们出现在页面的末尾。我更喜欢它们在页面的末尾,我想知道是否有办法在HTML中使用它们?

我意识到页面结尾会使HTML变得复杂;对于我来说,结尾部分也会起作用。实际上,将它们放在PDF的部分末尾而不是页面的末尾也可能有用。 (我已经尝试将---作为分节符,但脚注仍然在文档末尾。)

(我也试过制作pdf,然后是pdf2html,哪种作品但是真的很难看.Pandoc似乎不支持pdf到HTML,我得到& #34;无法解码字节' \ xd0' ...")

(这不是重复:Generate inline rather than list-style footnotes in Pandoc Markdown output?这个问题是关于从其他格式移动降价格式时脚注的处理方式。)

1 个答案:

答案 0 :(得分:0)

不知道如何为(打印)页面执行此操作(我自己正在寻找),但是对于脚注,您不能将输入文档分解为之前的部分>你把它们传递给pandoc,然后重新组装部件?

E.g。假设你的markdown文件看起来像这样(myfile.md):

Some text with a footnote.^[First note.]
----
Some more text with a footnote.^[Second note.]
----
And a third passage.^[Third note.]

然后你可以使用例如以下PHP脚本(虽然我确定有一百万种方法可以做到这一点),即pandoc-sections.php

<?php

$input_file = $argv[1];

if (!file_exists($input_file)) {
    exit('File not found.');
}

$chunks = preg_split('/\n-----*\n/',file_get_contents($input_file));

for ($i=0; $i<count($chunks); $i++) {
    $chunk = $chunks[$i];
    $idprefix = "section" . ($i+1);

    $descriptorspec = array(
      0 => array("pipe", "r"), // stdin
      1 => array("pipe", "w"), // stdout 
      2 => array("pipe", "w")  // stderr
    );

    $pandoc_process = proc_open('pandoc --id-prefix=' . 
         $idprefix, $descriptorspec, $pipes);

    if (is_resource($pandoc_process)) {
      fwrite($pipes[0], $chunk);
      fclose($pipes[0]);
      echo stream_get_contents($pipes[1]);
      fclose($pipes[1]);
      fclose($pipes[2]);
      proc_close($pandoc_process);
   }

}    

?>

然后运行

php pandoc-sections.php myfile.md

你得到:

<p>Some text with a footnote.<a href="#section1fn1" class="footnote-ref" id="section1fnref1"><sup>1</sup></a></p>
<section class="footnotes">
<hr />
<ol>
<li id="section1fn1"><p>First note.<a href="#section1section1fnref1" class="footnote-back">↩</a></p></li>
</ol>
</section>
<p>Some more text with a footnote.<a href="#section2fn1" class="footnote-ref" id="section2fnref1"><sup>1</sup></a></p>
<section class="footnotes">
<hr />
<ol>
<li id="section2fn1"><p>Second note.<a href="#section2section2fnref1" class="footnote-back">↩</a></p></li>
</ol>
</section>
<p>And a third passage.<a href="#section3fn1" class="footnote-ref" id="section3fnref1"><sup>1</sup></a></p>
<section class="footnotes">
<hr />
<ol>
<li id="section3fn1"><p>Third note.<a href="#section3section3fnref1" class="footnote-back">↩</a></p></li>
</ol>
</section>

根据需要进行调整。