要求:
所以經過一些研究,我已經決定,暫時它會是最簡單的只寫在降價的TW條目。使用Markdown plugin。
然後只是通過Pandoc將降價文件轉換成MediaWiki。或者通過Sublime Text插件使用Pandoc。
tbfisher的Sublime Text Pandoc(安裝後)的設置位於Preferences => Package Settings => Pandoc => Settings - User下。
您還需要Sublime Text Mediawiker爲MediaWiki文件提供語法設置。
我現在(測試)的設置如下:
{ "user":
{ "pandoc-path": "C:/Pandoc/pandoc.exe",
"transformations": {
"Markdown (Pandoc)": {
"scope": { "text.html.mediawiki" : "mediawiki" }
},
"MediaWiki" :{
"new-buffer": 1,
"scope": { "text.html.markdown" : "markdown" },
"syntax_file": "Packages/Mediawiker/Mediawiki.tmLanguage",
"pandoc-arguments": [
"--to=mediawiki"
]
},
"Markdown (GitHub)" : {
"new-buffer": 1,
"scope": {
"text.html.mediawiki" : "mediawiki+hard_line_breaks",
"text.html.markdown" : "markdown"
},
"syntax_file": "Packages/Markdown/Markdown.tmLanguage",
"pandoc-arguments": [
"--to=markdown_github",
"--atx-headers"
]
}
}
}
}