update packages
This commit is contained in:
90
lisp/ox-rst/ox-rst-autoloads.el
Normal file
90
lisp/ox-rst/ox-rst-autoloads.el
Normal file
@@ -0,0 +1,90 @@
|
||||
;;; ox-rst-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*-
|
||||
;; Generated by the `loaddefs-generate' function.
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
|
||||
|
||||
|
||||
|
||||
;;; Generated autoloads from ox-rst.el
|
||||
|
||||
(autoload 'org-rst-export-as-rst "ox-rst" "\
|
||||
Export current buffer to a reStructuredText buffer.
|
||||
|
||||
If narrowing is active in the current buffer, only export its
|
||||
narrowed part.
|
||||
|
||||
If a region is active, export that region.
|
||||
|
||||
A non-nil optional argument ASYNC means the process should happen
|
||||
asynchronously. The resulting buffer should be accessible
|
||||
through the `org-export-stack' interface.
|
||||
|
||||
When optional argument SUBTREEP is non-nil, export the sub-tree
|
||||
at point, extracting information from the headline properties
|
||||
first.
|
||||
|
||||
When optional argument VISIBLE-ONLY is non-nil, don't export
|
||||
contents of hidden elements.
|
||||
|
||||
Export is done in a buffer named \"*Org RST Export*\", which will
|
||||
be displayed when `org-export-show-temporary-export-buffer' is
|
||||
non-nil.
|
||||
|
||||
(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
|
||||
(autoload 'org-rst-convert-region-to-rst "ox-rst" "\
|
||||
Assume the current region has Org syntax, and convert it to
|
||||
reStructuredText.
|
||||
This can be used in any buffer. For example, you can write an
|
||||
itemized list in Org syntax in a Markdown buffer and use this command
|
||||
to convert it." t)
|
||||
(autoload 'org-rst-export-to-rst "ox-rst" "\
|
||||
Export current buffer to a reStructuredText file.
|
||||
|
||||
If narrowing is active in the current buffer, only export its
|
||||
narrowed part.
|
||||
|
||||
If a region is active, export that region.
|
||||
|
||||
A non-nil optional argument ASYNC means the process should happen
|
||||
asynchronously. The resulting file should be accessible through
|
||||
the `org-export-stack' interface.
|
||||
|
||||
When optional argument SUBTREEP is non-nil, export the sub-tree
|
||||
at point, extracting information from the headline properties
|
||||
first.
|
||||
|
||||
When optional argument VISIBLE-ONLY is non-nil, don't export
|
||||
contents of hidden elements.
|
||||
|
||||
Return output file's name.
|
||||
|
||||
(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t)
|
||||
(autoload 'org-rst-publish-to-rst "ox-rst" "\
|
||||
Publish an org file to reStructuredText.
|
||||
|
||||
FILENAME is the filename of the Org file to be published. PLIST
|
||||
is the property list for the given project. PUB-DIR is the
|
||||
publishing directory.
|
||||
|
||||
Return output file name.
|
||||
|
||||
(fn PLIST FILENAME PUB-DIR)")
|
||||
(register-definition-prefixes "ox-rst" '("my-org-export-inline-image-p" "org-"))
|
||||
|
||||
;;; End of scraped data
|
||||
|
||||
(provide 'ox-rst-autoloads)
|
||||
|
||||
;; Local Variables:
|
||||
;; version-control: never
|
||||
;; no-byte-compile: t
|
||||
;; no-update-autoloads: t
|
||||
;; no-native-compile: t
|
||||
;; coding: utf-8-emacs-unix
|
||||
;; End:
|
||||
|
||||
;;; ox-rst-autoloads.el ends here
|
||||
11
lisp/ox-rst/ox-rst-pkg.el
Normal file
11
lisp/ox-rst/ox-rst-pkg.el
Normal file
@@ -0,0 +1,11 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "ox-rst" "20250428.534"
|
||||
"Export reStructuredText using org-mode."
|
||||
'((emacs "25.1")
|
||||
(org "8.3"))
|
||||
:url "https://github.com/msnoigrs/ox-rst"
|
||||
:commit "b73eff187eebac24b457688bfd27f09eff434860"
|
||||
:revdesc "b73eff187eeb"
|
||||
:keywords '("org" "rst" "rest" "restructuredtext")
|
||||
:authors '(("Masanao Igarashi" . "syoux2@gmail.com"))
|
||||
:maintainers '(("Masanao Igarashi" . "syoux2@gmail.com")))
|
||||
1733
lisp/ox-rst/ox-rst.el
Normal file
1733
lisp/ox-rst/ox-rst.el
Normal file
File diff suppressed because it is too large
Load Diff
@@ -63,6 +63,7 @@
|
||||
(package-generate-autoloads "org-appear" (concat config-dir "lisp/org-appear"))
|
||||
(package-generate-autoloads "org-contrib" (concat config-dir "lisp/org-contrib"))
|
||||
(package-generate-autoloads "ox-pandoc" (concat config-dir "lisp/ox-pandoc"))
|
||||
(package-generate-autoloads "ox-rst" (concat config-dir "lisp/ox-rst"))
|
||||
(package-generate-autoloads "rainbow-mode" (concat config-dir "lisp/rainbow-mode"))
|
||||
(package-generate-autoloads "spacemacs-theme" (concat config-dir "lisp/spacemacs-theme"))
|
||||
(package-generate-autoloads "srefactor" (concat config-dir "lisp/srefactor"))
|
||||
|
||||
Reference in New Issue
Block a user