Server IP : 111.118.215.189 / Your IP : 18.117.158.174 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/share/emacs/24.3/lisp/org/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
;ELC ;;; Compiled by mockbuild@buildfarm06-new.corp.cloudlinux.com on Fri Oct 11 10:07:07 2024 ;;; from file /builddir/build/BUILD/emacs-24.3/lisp/org/org-docbook.el ;;; in Emacs version 24.3.1 ;;; with all optimizations. ;;; This file uses dynamic docstrings, first added in Emacs 19.29. ;;; This file does not contain utf-8 non-ASCII characters, ;;; and so can be loaded in Emacs versions earlier than 23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (byte-code "\300\301!\210\300\302!\210\300\303!\210\300\304!\210\300\305!\207" [require footnote org org-exp org-html format-spec] 2) (defvar org-docbook-para-open nil) (defvar org-export-docbook-inline-images t) (defvar org-export-docbook-link-org-files-as-docbook nil) (byte-code "\300\301\302\303\304\305\306\307&\210\310\311\312\313\306\301\314\315&\210\310\316\317\320\306\301\314\315&\210\310\321\302\322\306\301\314\315&\210\310\323\324\325\306\301\314\315&\210\310\326\327\330\306\301\314\315&\210\310\331\332\333\306\301\314\315&\210\310\334\335\336\306\301\337\340\314\315& \210\310\341\342\343\306\301\314\344&\210\310\345\346\347\306\301\314\344&\210\310\350\351\352\306\301\314\353&\210\310\354\302\355\306\301\314\356&\210\310\357\302\360\306\301\337\340\314\315& \210\310\361\302\362\306\301\314\315&\210\310\363\302\364\306\301\314\315&\210\310\365\366\367\306\301\314\315&\210\310\370\371\372\306\301\314\315&\207" [custom-declare-group org-export-docbook nil "Options for exporting Org-mode files to DocBook." :tag "Org Export DocBook" :group org-export custom-declare-variable org-export-docbook-extension ".xml" "Extension of DocBook XML files." :type string org-export-docbook-header "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" "Header of DocBook XML files." org-export-docbook-doctype "DOCTYPE declaration string for DocBook XML files.\nThis can be used to include entities that are needed to handle\nspecial characters in Org files.\n\nFor example, if the Org file to be exported contains XHTML\nentities, you can set this variable to:\n\n\"<!DOCTYPE article [\n<!ENTITY % xhtml1-symbol PUBLIC\n\"-//W3C//ENTITIES Symbol for HTML//EN//XML\"\n\"http://www.w3.org/2003/entities/2007/xhtml1-symbol.ent\"\n>\n%xhtml1-symbol;\n]>\n\"\n\nIf you want to process DocBook documents without an Internet\nconnection, it is suggested that you download the required entity\nfile(s) and use system identifier(s) (external files) in the\nDOCTYPE declaration." org-export-docbook-article-header "<article xmlns=\"http://docbook.org/ns/docbook\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"5.0\" xml:lang=\"en\">" "Article header of DocBook XML files." org-export-docbook-section-id-prefix "sec-" "Prefix of section IDs used during exporting.\nThis can be set before exporting to avoid same set of section IDs\nbeing used again and again, which can be a problem when multiple\npeople work on the same document." org-export-docbook-footnote-id-prefix "fn-" "The prefix of footnote IDs used during exporting.\nLike `org-export-docbook-section-id-prefix', this variable can help\navoid same set of footnote IDs being used multiple times." org-export-docbook-footnote-separator "<superscript>, </superscript>" "Text used to separate footnotes." :version "24.1" org-export-docbook-emphasis-alist `(("*" "<emphasis role=\"bold\">" "</emphasis>") ("/" "<emphasis>" "</emphasis>") ("_" "<emphasis role=\"underline\">" "</emphasis>") ("=" "<code>" "</code>") ("~" "<literal>" "</literal>") ("+" "<emphasis role=\"strikethrough\">" "</emphasis>")) "A list of DocBook expressions to convert emphasis fontifiers.\nEach element of the list is a list of three elements.\nThe first element is the character used as a marker for fontification.\nThe second element is a format string to wrap fontified text with.\nThe third element decides whether to protect converted text from other\nconversions." alist org-export-docbook-default-image-attributes `(("align" . "\"center\"") ("valign" . "\"middle\"")) "Alist of default DocBook image attributes.\nThese attributes will be inserted into element <imagedata> by\ndefault, but users can override them using `#+ATTR_DocBook:'." org-export-docbook-inline-image-extensions '("jpeg" "jpg" "png" "gif" "svg") "Extensions of image files that can be inlined into DocBook." (repeat (string :tag "Extension")) org-export-docbook-coding-system "Coding system for DocBook XML files." coding-system org-export-docbook-xslt-stylesheet "File name of the XSLT stylesheet used by DocBook exporter.\nThis XSLT stylesheet is used by\n`org-export-docbook-xslt-proc-command' to generate the Formatting\nObject (FO) files. You can use either `fo/docbook.xsl' that\ncomes with DocBook, or any customization layer you may have." org-export-docbook-xslt-proc-command "Format of XSLT processor command used by DocBook exporter.\nThis command is used to process a DocBook XML file to generate\nthe Formatting Object (FO) file.\n\nThe value of this variable should be a format control string that\nincludes three arguments: `%i', `%o', and `%s'. During exporting\ntime, `%i' is replaced by the input DocBook XML file name, `%o'\nis replaced by the output FO file name, and `%s' is replaced by\n`org-export-docbook-xslt-stylesheet' (or the #+XSLT option if it\nis specified in the Org file).\n\nFor example, if you use Saxon as the XSLT processor, you may want\nto set the variable to\n\n \"java com.icl.saxon.StyleSheet -o %o %i %s\"\n\nIf you use Xalan, you can set it to\n\n \"java org.apache.xalan.xslt.Process -out %o -in %i -xsl %s\"\n\nFor xsltproc, the following string should work:\n\n \"xsltproc --output %o %s %i\"\n\nYou can include additional stylesheet parameters in this command.\nJust make sure that they meet the syntax requirement of each\nprocessor." org-export-docbook-xsl-fo-proc-command "Format of XSL-FO processor command used by DocBook exporter.\nThis command is used to process a Formatting Object (FO) file to\ngenerate the PDF file.\n\nThe value of this variable should be a format control string that\nincludes two arguments: `%i' and `%o'. During exporting time,\n`%i' is replaced by the input FO file name, and `%o' is replaced\nby the output PDF file name.\n\nFor example, if you use FOP as the XSL-FO processor, you can set\nthe variable to\n\n \"fop %i %o\"" org-export-docbook-keywords-markup "<literal>%s</literal>" "A printf format string to be applied to keywords by DocBook exporter." org-export-docbook-timestamp-markup "<emphasis>%s</emphasis>" "A printf format string to be applied to time stamps by DocBook exporter."] 10) #@59 Hook run at the end of DocBook export, in the new buffer. (defvar org-export-docbook-final-hook nil (#$ . 6679)) #@230 Call `org-export-as-docbook' in batch style. This function can be used in batch processing. For example: $ emacs --batch --load=$HOME/lib/emacs/org.el --visit=MyOrgFile.org --funcall org-export-as-docbook-batch (defalias 'org-export-as-docbook-batch #[nil "\300 \207" [org-export-as-docbook] 1 (#$ . 6799)]) #@85 Call `org-export-as-docbook' with output to a temporary buffer. No file is created. (defalias 'org-export-as-docbook-to-buffer #[nil "\301\302\303\"\210\205\f \304\303!\207" [org-export-show-temporary-export-buffer org-export-as-docbook nil "*Org DocBook Export*" switch-to-buffer-other-window] 3 (#$ . 7131) nil]) #@301 Replace the region from BEG to END with its DocBook export. It assumes the region has `org-mode' syntax, and then convert it to DocBook. This can be used in any buffer. For example, you could write an itemized list in `org-mode' syntax in an DocBook buffer and then use this command to convert it. (defalias 'org-replace-region-by-docbook #[(beg end) "\306\211\211\307 \310\216\311\312!\203 \313\f \314\315$\202<