Generate documentation for Elisp packages.
Name | Version |
---|---|
Emacs | 28.1 |
org | 9.5.5 |
(use-package org-autodoc
:straight (org-autodoc
:repo "KarimAziev/org-autodoc"
:type git
:host github)
:commands (org-autodoc-insert-doc-string
org-autodoc-async
org-autodoc-insert-use-package))
Download the source code and put it wherever you like, e.g. into ~/.emacs.d/org-autodoc/
git clone https://github.com/KarimAziev/org-autodoc.git ~/.emacs.d/org-autodoc/
Add the downloaded directory to the load path:
(add-to-list 'load-path "~/.emacs.d/org-autodoc/")
(require 'org-autodoc)
Inside function without documentation string, insert documentation template.
Load current file in new emacs
process and generate documentation for it.
Insert use-package
skeleton for library
.