โหมด Markdown ของ GitHub


19

มีโหมด Emacs สำหรับ GitHub Flavored Markdown หรือไม่?

GitHub Flavoured Markdown เพิ่มคุณสมบัติหลายอย่างให้กับ Markdown แบบดั้งเดิม: การจัดการขีดล่าง, การเชื่อมโยง URL อัตโนมัติ, ขีดกลางและตาราง มันจะดีถ้ามีโหมด Emacs ที่รองรับการเพิ่มเติมเหล่านี้ (โดยเฉพาะตาราง)


ที่เกี่ยวข้อง: emacs.stackexchange.com/q/4276/2355
Constantine

คำตอบ:


22

มีgfm-mode(ซึ่งเป็นส่วนหนึ่งของmarkdown-mode.el ) จากคำอธิบายในไฟล์:

;;; GitHub Flavored Markdown:

;; A [GitHub Flavored Markdown][GFM] (GFM) mode, `gfm-mode', is also
;; available.  The GitHub implementation of differs slightly from
;; standard Markdown.  The most important differences are that
;; newlines are significant, triggering hard line breaks, and that
;; underscores inside of words (e.g., variable names) need not be
;; escaped.  As such, `gfm-mode' turns off `auto-fill-mode' and turns
;; on `visual-line-mode' (or `longlines-mode' if `visual-line-mode' is
;; not available).  Underscores inside of words (such as
;; test_variable) will not trigger emphasis.
;;
;; Wiki links in this mode will be treated as on GitHub, with hyphens
;; replacing spaces in filenames and where the first letter of the
;; filename capitalized.  For example, `[[wiki link]]' will map to a
;; file named `Wiki-link` with the same extension as the current file.
;;
;; GFM code blocks, with optional programming language keywords, will
;; be highlighted.  They can be inserted with `C-c C-s P`.  If there
;; is an active region, the text in the region will be placed inside
;; the code block.  You will be prompted for the name of the language,
;; but may press enter to continue without naming a language.

โหมด markdown นั้นดีมาก แต่มันทำอะไรกับตารางบ้างไหม? คำถามนั้นแยกออกมาเป็นพิเศษ
Clément
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.