2011-07-31 103 views

回答

3
  • 安裝pandoc(> 1.8)
  • 獲取最新pandoc - 壹岐插件:cd /tmp/; git clone https://github.com/dubiousjim/pandoc-iki.git
  • 找出安裝pandoc其中:which pandoc例如/usr/bin/pandoc
  • 添加以下行到你的維基 - 設置(例如,mywiki.setup)文件:

    # pandoc plugin 
    
    pandoc_command => "/usr/bin/pandoc", 
    
    pandoc_latex => 1, 
    
    pandoc_rst => 0, 
    
    pandoc_math => "mathjax", 
    
  • 添加pandoc噸Ø在你的設置文件的插件列表,例如

    \# plugins to add to the default configuration 
    
    add_plugins => [qw{goodstuff websetup wmd pandoc}] 
    
  • sudo cp /tmp/pandoc-iki/mathjax.tmpl /usr/share/ikiwiki/templates/page.tmpl
  • sudo cp /tmp/pandoc-iki/pandoc.pm /usr/share/perl5/IkiWiki/Plugin
  • sudo ikiwiki --setup ~/mywiki.setup

  • 要激活html_css您更改以下行中/usr/share/ikiwiki/templates/page.tmpl

    <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>

    <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full" type="text/javascript"></script>

    然後再做sudo ikiwiki --setup ~/mywiki.setup

  • 如果你想你的ikiwiki離線也用,你可以在路徑更改爲目錄:下載mathjax,並把它的地方例如進入/var/www/myiki和做改變上面的線

    <script src="/iki/mathjax/MathJax.js?config=TeX-AMS_HTML-full" type="text/javascript"></script> 
    

    (不要忘了從未來運行ikiwiki --setup

+0

注:cdn.mathjax.org接近其結束生命,檢查https://www.mathjax.org/cdn-shutting-down爲遷移技巧(也許更新您的文章以供未來的讀者使用)。 –