소스 검색

export back-ends: Apply line break changes

* contrib/lisp/org-e-html.el (org-e-html-line-break): Apply line break
  changes.
* contrib/lisp/org-e-latex.el (org-e-latex-line-break): Apply line
  break changes.
* contrib/lisp/org-e-texinfo.el (org-e-texinfo-line-break): Apply line
  break changes.
* contrib/lisp/org-md.el (org-md-line-break): Apply line break
  changes.
Nicolas Goaziou 13 년 전
부모
커밋
2c39a4ae85
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      contrib/lisp/org-e-html.el
  2. 1 1
      contrib/lisp/org-e-latex.el
  3. 1 1
      contrib/lisp/org-e-texinfo.el
  4. 1 1
      contrib/lisp/org-md.el

+ 1 - 1
contrib/lisp/org-e-html.el

@@ -2032,7 +2032,7 @@ CONTENTS is nil.  INFO is a plist holding contextual information."
 (defun org-e-html-line-break (line-break contents info)
   "Transcode a LINE-BREAK object from Org to HTML.
 CONTENTS is nil.  INFO is a plist holding contextual information."
-  "<br/>")
+  "<br/>\n")
 
 
 ;;;; Link

+ 1 - 1
contrib/lisp/org-e-latex.el

@@ -1714,7 +1714,7 @@ CONTENTS is nil.  INFO is a plist holding contextual information."
 (defun org-e-latex-line-break (line-break contents info)
   "Transcode a LINE-BREAK object from Org to LaTeX.
 CONTENTS is nil.  INFO is a plist holding contextual information."
-  "\\\\")
+  "\\\\\n")
 
 
 ;;;; Link

+ 1 - 1
contrib/lisp/org-e-texinfo.el

@@ -1162,7 +1162,7 @@ CONTENTS is nil.  INFO is a plist holding contextual information."
 (defun org-e-texinfo-line-break (line-break contents info)
   "Transcode a LINE-BREAK object from Org to Texinfo.
 CONTENTS is nil.  INFO is a plist holding contextual information."
-  "@*")
+  "@*\n")
 
 ;;; Link
 

+ 1 - 1
contrib/lisp/org-md.el

@@ -248,7 +248,7 @@ a communication channel."
   "Transcode LINE-BREAK object into Markdown format.
 CONTENTS is nil.  INFO is a plist used as a communication
 channel."
-  "  ")
+  "  \n")
 
 
 ;;;; Link