Small fix
* contrib/lisp/ox-bibtex.el (org-bibtex-process-bib-files, org-bibtex-process-bib-files): Use correct encoding. * lisp/ox.el (org-export-dictionary): Update "Reference" entry.
This commit is contained in:
parent
860912c6d0
commit
56483ad173
|
@ -213,7 +213,7 @@ Return new parse tree."
|
|||
(cond
|
||||
((org-export-derived-backend-p backend 'html)
|
||||
(insert (format "<div id=\"bibliography\">\n<h2>%s</h2>\n"
|
||||
(org-export-translates "References" :bibtex info)))
|
||||
(org-export-translate "References" :html info)))
|
||||
(insert-file-contents (concat file ".html"))
|
||||
(insert "\n</div>"))
|
||||
((org-export-derived-backend-p backend 'ascii)
|
||||
|
@ -223,9 +223,13 @@ Return new parse tree."
|
|||
"-o"
|
||||
(concat file ".txt")))
|
||||
(error "Executing pandoc failed"))
|
||||
(insert (format
|
||||
"%s\n==========\n\n"
|
||||
(org-export-translates "References" :bibtex info)))
|
||||
(insert
|
||||
(format
|
||||
"%s\n==========\n\n"
|
||||
(org-export-translate
|
||||
"References"
|
||||
(intern (format ":%s" (plist-get info :ascii-charset)))
|
||||
info)))
|
||||
(insert-file-contents (concat file ".txt"))
|
||||
(goto-char (point-min))
|
||||
(while (re-search-forward
|
||||
|
|
|
@ -5486,7 +5486,7 @@ them."
|
|||
:utf-8 "Распечатка %d.:")
|
||||
("zh-CN" :html "代码%d " :utf-8 "代码%d "))
|
||||
("References"
|
||||
("fr" :default "Références"))
|
||||
("fr" :ascii "References" :default "Références"))
|
||||
("See section %s"
|
||||
("da" :default "jævnfør afsnit %s")
|
||||
("de" :default "siehe Abschnitt %s")
|
||||
|
|
Loading…
Reference in New Issue