We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preview Unix manual page written in AsciiDoc:
(defun my-live-preview-asciidoc-manpage (src-buf) (insert (with-current-buffer src-buf (buffer-string))) (shell-command-on-region (point-min) (point-max) "asciidoctor -b manpage -o - - | mandoc" (current-buffer)) (Man-fontify-manpage))
MacOS packages: brew install asciidoctor mandoc
brew install asciidoctor mandoc
The text was updated successfully, but these errors were encountered:
Preview Unix manual page written directly in nroff using man/mdoc macros:
nroff
man
mdoc
(defun my-live-preview-manpage (src-buf) (insert (with-current-buffer src-buf (buffer-string))) (shell-command-on-region (point-min) (point-max) "mandoc" (current-buffer)) (Man-fontify-manpage))
Sorry, something went wrong.
One can also use nroff -man instead of mandoc in the above shell commands. Formatting will be slightly different.
nroff -man
mandoc
No branches or pull requests
Preview Unix manual page written in AsciiDoc:
MacOS packages:
brew install asciidoctor mandoc
The text was updated successfully, but these errors were encountered: