mirror of
https://github.com/larstvei/ox-gfm.git
synced 2025-04-19 19:10:12 +00:00
Merge cf754ecfb6
into 46faa67dbb
This commit is contained in:
commit
3ab0289e3d
90
ox-gfm.el
90
ox-gfm.el
@ -3,7 +3,10 @@
|
|||||||
;; Copyright (C) 2014-2017 Lars Tveito
|
;; Copyright (C) 2014-2017 Lars Tveito
|
||||||
|
|
||||||
;; Author: Lars Tveito
|
;; Author: Lars Tveito
|
||||||
|
;; Version: 1.0
|
||||||
;; Keywords: org, wp, markdown, github
|
;; Keywords: org, wp, markdown, github
|
||||||
|
;; Package-Requires: ((emacs "26.1") (org "9.0"))
|
||||||
|
;; URL: https://github.com/larstvei/ox-gfm
|
||||||
|
|
||||||
;; This file is not part of GNU Emacs.
|
;; This file is not part of GNU Emacs.
|
||||||
|
|
||||||
@ -27,6 +30,7 @@
|
|||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
(require 'cl-lib)
|
||||||
(require 'ox-md)
|
(require 'ox-md)
|
||||||
(require 'ox-publish)
|
(require 'ox-publish)
|
||||||
|
|
||||||
@ -84,9 +88,8 @@ communication channel."
|
|||||||
;;;; Src Block
|
;;;; Src Block
|
||||||
|
|
||||||
(defun org-gfm-src-block (src-block contents info)
|
(defun org-gfm-src-block (src-block contents info)
|
||||||
"Transcode SRC-BLOCK element into Github Flavored Markdown
|
"Transcode SRC-BLOCK element into Github Flavored Markdown format.
|
||||||
format. CONTENTS is nil. INFO is a plist used as a communication
|
CONTENTS is nil. INFO is a plist used as a communication channel."
|
||||||
channel."
|
|
||||||
(let* ((lang (org-element-property :language src-block))
|
(let* ((lang (org-element-property :language src-block))
|
||||||
(code (org-export-format-code-default src-block info))
|
(code (org-export-format-code-default src-block info))
|
||||||
(prefix (concat "```" lang "\n"))
|
(prefix (concat "```" lang "\n"))
|
||||||
@ -109,28 +112,28 @@ holding contextual information."
|
|||||||
|
|
||||||
;;;; Table-Common
|
;;;; Table-Common
|
||||||
|
|
||||||
(defvar width-cookies nil)
|
(defvar org-gfm-width-cookies nil)
|
||||||
(defvar width-cookies-table nil)
|
(defvar org-gfm-width-cookies-table nil)
|
||||||
|
|
||||||
(defconst gfm-table-left-border "|")
|
(defconst org-gfm-table-left-border "|")
|
||||||
(defconst gfm-table-right-border " |")
|
(defconst org-gfm-table-right-border " |")
|
||||||
(defconst gfm-table-separator " |")
|
(defconst org-gfm-table-separator " |")
|
||||||
|
|
||||||
(defun org-gfm-table-col-width (table column info)
|
(defun org-gfm-table-col-width (table column info)
|
||||||
"Return width of TABLE at given COLUMN. INFO is a plist used as
|
"Return width of TABLE at given COLUMN.
|
||||||
communication channel. Width of a column is determined either by
|
INFO is a plist used as communication channel.
|
||||||
inquerying `width-cookies' in the column, or by the maximum cell with in
|
Width of a column is determined either by inquerying `org-gfm-width-cookies'
|
||||||
the column."
|
in the column, or by the maximum cell with in the column."
|
||||||
(let ((cookie (when (hash-table-p width-cookies)
|
(let ((cookie (when (hash-table-p org-gfm-width-cookies)
|
||||||
(gethash column width-cookies))))
|
(gethash column org-gfm-width-cookies))))
|
||||||
(if (and (eq table width-cookies-table)
|
(if (and (eq table org-gfm-width-cookies-table)
|
||||||
(not (eq nil cookie)))
|
(not (eq nil cookie)))
|
||||||
cookie
|
cookie
|
||||||
(progn
|
(progn
|
||||||
(unless (and (eq table width-cookies-table)
|
(unless (and (eq table org-gfm-width-cookies-table)
|
||||||
(hash-table-p width-cookies))
|
(hash-table-p org-gfm-width-cookies))
|
||||||
(setq width-cookies (make-hash-table))
|
(setq org-gfm-width-cookies (make-hash-table))
|
||||||
(setq width-cookies-table table))
|
(setq org-gfm-width-cookies-table table))
|
||||||
(let ((max-width 0)
|
(let ((max-width 0)
|
||||||
(specialp (org-export-table-has-special-column-p table)))
|
(specialp (org-export-table-has-special-column-p table)))
|
||||||
(org-element-map
|
(org-element-map
|
||||||
@ -147,12 +150,12 @@ the column."
|
|||||||
info))
|
info))
|
||||||
max-width)))
|
max-width)))
|
||||||
info)
|
info)
|
||||||
(puthash column max-width width-cookies))))))
|
(puthash column max-width org-gfm-width-cookies))))))
|
||||||
|
|
||||||
|
|
||||||
(defun org-gfm-make-hline-builder (table info char)
|
(defun org-gfm-make-hline-builder (table info char)
|
||||||
"Return a function to build horizontal line in TABLE with given
|
"Return a function to build horizontal line in TABLE with given CHAR.
|
||||||
CHAR. INFO is a plist used as a communication channel."
|
INFO is a plist used as a communication channel."
|
||||||
`(lambda (col)
|
`(lambda (col)
|
||||||
(let ((max-width (max 3 (org-gfm-table-col-width table col info))))
|
(let ((max-width (max 3 (org-gfm-table-col-width table col info))))
|
||||||
(when (< max-width 1)
|
(when (< max-width 1)
|
||||||
@ -163,8 +166,9 @@ CHAR. INFO is a plist used as a communication channel."
|
|||||||
;;;; Table-Cell
|
;;;; Table-Cell
|
||||||
|
|
||||||
(defun org-gfm-table-cell (table-cell contents info)
|
(defun org-gfm-table-cell (table-cell contents info)
|
||||||
"Transcode TABLE-CELL element from Org into GFM. CONTENTS is content
|
"Transcode TABLE-CELL element from Org into GFM.
|
||||||
of the cell. INFO is a plist used as a communication channel."
|
CONTENTS is content of the cell.
|
||||||
|
INFO is a plist used as a communication channel."
|
||||||
(let* ((table (org-export-get-parent-table table-cell))
|
(let* ((table (org-export-get-parent-table table-cell))
|
||||||
(column (cdr (org-export-table-cell-address table-cell info)))
|
(column (cdr (org-export-table-cell-address table-cell info)))
|
||||||
(width (org-gfm-table-col-width table column info))
|
(width (org-gfm-table-col-width table column info))
|
||||||
@ -181,9 +185,9 @@ of the cell. INFO is a plist used as a communication channel."
|
|||||||
;;;; Table-Row
|
;;;; Table-Row
|
||||||
|
|
||||||
(defun org-gfm-table-row (table-row contents info)
|
(defun org-gfm-table-row (table-row contents info)
|
||||||
"Transcode TABLE-ROW element from Org into GFM. CONTENTS is cell
|
"Transcode TABLE-ROW element from Org into GFM.
|
||||||
contents of TABLE-ROW. INFO is a plist used as a communication
|
CONTENTS is cell contents of TABLE-ROW.
|
||||||
channel."
|
INFO is a plist used as a communication channel."
|
||||||
(let ((table (org-export-get-parent-table table-row)))
|
(let ((table (org-export-get-parent-table table-row)))
|
||||||
(when (and (eq 'rule (org-element-property :type table-row))
|
(when (and (eq 'rule (org-element-property :type table-row))
|
||||||
;; In GFM, rule is valid only at second row.
|
;; In GFM, rule is valid only at second row.
|
||||||
@ -195,11 +199,11 @@ channel."
|
|||||||
(build-rule (org-gfm-make-hline-builder table info ?-))
|
(build-rule (org-gfm-make-hline-builder table info ?-))
|
||||||
(cols (cdr (org-export-table-dimensions table info))))
|
(cols (cdr (org-export-table-dimensions table info))))
|
||||||
(setq contents
|
(setq contents
|
||||||
(concat gfm-table-left-border
|
(concat org-gfm-table-left-border
|
||||||
(mapconcat (lambda (col) (funcall build-rule col))
|
(mapconcat (lambda (col) (funcall build-rule col))
|
||||||
(number-sequence 0 (- cols 1))
|
(number-sequence 0 (- cols 1))
|
||||||
gfm-table-separator)
|
org-gfm-table-separator)
|
||||||
gfm-table-right-border))))
|
org-gfm-table-right-border))))
|
||||||
contents))
|
contents))
|
||||||
|
|
||||||
|
|
||||||
@ -208,8 +212,8 @@ channel."
|
|||||||
|
|
||||||
(defun org-gfm-table (table contents info)
|
(defun org-gfm-table (table contents info)
|
||||||
"Transcode TABLE element into Github Flavored Markdown table.
|
"Transcode TABLE element into Github Flavored Markdown table.
|
||||||
CONTENTS is the contents of the table. INFO is a plist holding
|
CONTENTS is the contents of the table.
|
||||||
contextual information."
|
INFO is a plist holding contextual information."
|
||||||
(let* ((rows (org-element-map table 'table-row 'identity info))
|
(let* ((rows (org-element-map table 'table-row 'identity info))
|
||||||
(no-header (or (<= (length rows) 1)))
|
(no-header (or (<= (length rows) 1)))
|
||||||
(cols (cdr (org-export-table-dimensions table info)))
|
(cols (cdr (org-export-table-dimensions table info)))
|
||||||
@ -219,15 +223,15 @@ contextual information."
|
|||||||
(let ((build-empty-cell (org-gfm-make-hline-builder table info ?\s))
|
(let ((build-empty-cell (org-gfm-make-hline-builder table info ?\s))
|
||||||
(build-rule (org-gfm-make-hline-builder table info ?-))
|
(build-rule (org-gfm-make-hline-builder table info ?-))
|
||||||
(columns (number-sequence 0 (- cols 1))))
|
(columns (number-sequence 0 (- cols 1))))
|
||||||
(concat gfm-table-left-border
|
(concat org-gfm-table-left-border
|
||||||
(mapconcat (lambda (col) (funcall build-empty-cell col))
|
(mapconcat (lambda (col) (funcall build-empty-cell col))
|
||||||
columns
|
columns
|
||||||
gfm-table-separator)
|
org-gfm-table-separator)
|
||||||
gfm-table-right-border "\n" gfm-table-left-border
|
org-gfm-table-right-border "\n" org-gfm-table-left-border
|
||||||
(mapconcat (lambda (col) (funcall build-rule col))
|
(mapconcat (lambda (col) (funcall build-rule col))
|
||||||
columns
|
columns
|
||||||
gfm-table-separator)
|
org-gfm-table-separator)
|
||||||
gfm-table-right-border "\n"))))))
|
org-gfm-table-right-border "\n"))))))
|
||||||
(concat (when no-header (funcall build-dummy-header))
|
(concat (when no-header (funcall build-dummy-header))
|
||||||
(replace-regexp-in-string "\n\n" "\n" contents))))
|
(replace-regexp-in-string "\n\n" "\n" contents))))
|
||||||
|
|
||||||
@ -235,8 +239,8 @@ contextual information."
|
|||||||
;;;; Table of contents
|
;;;; Table of contents
|
||||||
|
|
||||||
(defun org-gfm-format-toc (headline)
|
(defun org-gfm-format-toc (headline)
|
||||||
"Return an appropriate table of contents entry for HEADLINE. INFO is a
|
"Return an appropriate table of contents entry for HEADLINE.
|
||||||
plist used as a communication channel."
|
INFO is a plist used as a communication channel."
|
||||||
(let* ((title (org-export-data
|
(let* ((title (org-export-data
|
||||||
(org-export-get-alt-title headline info) info))
|
(org-export-get-alt-title headline info) info))
|
||||||
(level (1- (org-element-property :level headline)))
|
(level (1- (org-element-property :level headline)))
|
||||||
@ -326,10 +330,10 @@ non-nil."
|
|||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun org-gfm-convert-region-to-md ()
|
(defun org-gfm-convert-region-to-md ()
|
||||||
"Assume the current region has org-mode syntax, and convert it
|
"Assume `org-mode' syntax, and convert it to Github Flavored Markdown.
|
||||||
to Github Flavored Markdown. This can be used in any buffer.
|
This can be used in any buffer. For example, you can write an
|
||||||
For example, you can write an itemized list in org-mode syntax in
|
itemized list in `org-mode' syntax in a Markdown buffer and use
|
||||||
a Markdown buffer and use this command to convert it."
|
this command to convert it."
|
||||||
(interactive)
|
(interactive)
|
||||||
(org-export-replace-region-by 'gfm))
|
(org-export-replace-region-by 'gfm))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user