Merge branch 'fuel-help' of git://github.com/phildawes/factor
commit
96b84bd1ab
|
@ -134,6 +134,7 @@
|
||||||
($strong . fuel-markup--strong)
|
($strong . fuel-markup--strong)
|
||||||
($subheading . fuel-markup--subheading)
|
($subheading . fuel-markup--subheading)
|
||||||
($subsection . fuel-markup--subsection)
|
($subsection . fuel-markup--subsection)
|
||||||
|
($subsections . fuel-markup--subsections)
|
||||||
($synopsis . fuel-markup--synopsis)
|
($synopsis . fuel-markup--synopsis)
|
||||||
($syntax . fuel-markup--syntax)
|
($syntax . fuel-markup--syntax)
|
||||||
($table . fuel-markup--table)
|
($table . fuel-markup--table)
|
||||||
|
@ -224,6 +225,13 @@
|
||||||
(fuel-markup--link (cons '$link (cdr e)))
|
(fuel-markup--link (cons '$link (cdr e)))
|
||||||
(fuel-markup--maybe-nl))
|
(fuel-markup--maybe-nl))
|
||||||
|
|
||||||
|
(defun fuel-markup--subsections (e)
|
||||||
|
(dolist (link (cdr e))
|
||||||
|
(fuel-markup--insert-nl-if-nb)
|
||||||
|
(insert " - ")
|
||||||
|
(fuel-markup--link (list '$link link))
|
||||||
|
(fuel-markup--maybe-nl)))
|
||||||
|
|
||||||
(defun fuel-markup--vocab-subsection (e)
|
(defun fuel-markup--vocab-subsection (e)
|
||||||
(fuel-markup--insert-nl-if-nb)
|
(fuel-markup--insert-nl-if-nb)
|
||||||
(insert " - ")
|
(insert " - ")
|
||||||
|
|
Loading…
Reference in New Issue