All public logs
Combined display of all available logs of 清冽之泉. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:21, 10 March 2026 Mwroot talk contribs created page 怎样把 MediaWiki 的 wikitext 转换为 GitHub 风格的 markdown (Created page with "<syntaxhighlight lang="elisp" line> ;; wikitext -> gfm converter ;; ;; 设计原则: ;; 1 所有规则按顺序执行 ;; 2 每条规则对应一段代码 ;; 3 不做抽象,优先可读性 ;; ;; 规则: ;; 1 <code> ;; 2 <syntaxhighlight> ;; 3 # -> * ;; 4 ====== -> ###### ;; 5 ===== -> ##### ;; 6 ==== -> #### ;; 7 === -> ### ;; 8 == -> ## ;; 9 <del> -> ~~ ;; 10 ---- -> --- (defun wikitext-convert-all (&optional start end) "Convert simple wikitext to GFM markdown."...")