Mercurial > emacs
comparison lisp/org/org.el @ 94764:b0f118394bb4
(org-modules, org-format-latex-options): Fix typos in docstrings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 08 May 2008 15:42:27 +0000 |
parents | 494fe8a4eeb0 |
children | ee90761f44b6 |
comparison
equal
deleted
inserted
replaced
94763:ff5a0c88b6ba | 94764:b0f118394bb4 |
---|---|
138 (when (featurep 'org) | 138 (when (featurep 'org) |
139 (org-load-modules-maybe 'force))) | 139 (org-load-modules-maybe 'force))) |
140 | 140 |
141 (defcustom org-modules '(org-bbdb org-bibtex org-gnus org-info org-infojs org-irc org-mew org-mhe org-rmail org-vm org-wl) | 141 (defcustom org-modules '(org-bbdb org-bibtex org-gnus org-info org-infojs org-irc org-mew org-mhe org-rmail org-vm org-wl) |
142 "Modules that should always be loaded together with org.el. | 142 "Modules that should always be loaded together with org.el. |
143 If a description starts with <C>, the file is not part of emacs | 143 If a description starts with <C>, the file is not part of Emacs |
144 and loading it will require that you have downloaded and properly installed | 144 and loading it will require that you have downloaded and properly installed |
145 the org-mode distribution. | 145 the org-mode distribution. |
146 | 146 |
147 You can also use this system to load external packages (i.e. neither Org | 147 You can also use this system to load external packages (i.e. neither Org |
148 core modules, not modules from the CONTRIB directory). Just add symbols | 148 core modules, not modules from the CONTRIB directory). Just add symbols |
149 to the end of the list. If the package is called org-xyz.e, then you need | 149 to the end of the list. If the package is called org-xyz.el, then you need |
150 to add the symbol `xyz', and the package must have a call to | 150 to add the symbol `xyz', and the package must have a call to |
151 | 151 |
152 (provide 'org-xyz)" | 152 (provide 'org-xyz)" |
153 :group 'org | 153 :group 'org |
154 :set 'org-set-modules | 154 :set 'org-set-modules |
1947 '(:foreground default :background default :scale 1.0 | 1947 '(:foreground default :background default :scale 1.0 |
1948 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0 | 1948 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0 |
1949 :matchers ("begin" "$" "$$" "\\(" "\\[")) | 1949 :matchers ("begin" "$" "$$" "\\(" "\\[")) |
1950 "Options for creating images from LaTeX fragments. | 1950 "Options for creating images from LaTeX fragments. |
1951 This is a property list with the following properties: | 1951 This is a property list with the following properties: |
1952 :foreground the foreground color for images embedded in emacs, e.g. \"Black\". | 1952 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\". |
1953 `default' means use the forground of the default face. | 1953 `default' means use the foreground of the default face. |
1954 :background the background color, or \"Transparent\". | 1954 :background the background color, or \"Transparent\". |
1955 `default' means use the background of the default face. | 1955 `default' means use the background of the default face. |
1956 :scale a scaling factor for the size of the images | 1956 :scale a scaling factor for the size of the images. |
1957 :html-foreground, :html-background, :html-scale | 1957 :html-foreground, :html-background, :html-scale |
1958 The same numbers for HTML export. | 1958 the same numbers for HTML export. |
1959 :matchers a list indicating which matchers should be used to | 1959 :matchers a list indicating which matchers should be used to |
1960 find LaTeX fragments. Valid members of this list are: | 1960 find LaTeX fragments. Valid members of this list are: |
1961 \"begin\" find environments | 1961 \"begin\" find environments |
1962 \"$\" find math expressions surrounded by $...$ | 1962 \"$\" find math expressions surrounded by $...$ |
1963 \"$$\" find math expressions surrounded by $$....$$ | 1963 \"$$\" find math expressions surrounded by $$....$$ |