Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mquinson/po4a
Browse files Browse the repository at this point in the history
  • Loading branch information
mquinson committed Sep 13, 2024
2 parents 9f837ba + 7e5f0e8 commit ba4036a
Show file tree
Hide file tree
Showing 12 changed files with 845 additions and 3 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ General:
TeX:
* Fix read error of input/include files in TeX files (thanks Alex Karabanov)

Org:
* New module (GitHub's #485) [gemmaro].

Translations:
* New translation: Romanian, thanks to Remus-Gabriel Chelu.
* Updated: Chinese (Traditional), thanks Ricky From Hong Kong.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module for the following formats:
- latex: LaTeX format.
- bibtex: bibtex format.
- man: Good old manual page format (either roff or mdoc).
- org: document format for the Org mode.
- markdown: MD documents (using the txt module).
- pod: Perl Online Documentation format.
- rubydoc: RubyDoc (RD) documents.
Expand Down
13 changes: 10 additions & 3 deletions doc/po4a.7.pod
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,12 @@ The native plain text format of the Gemini protocol. The extension
its infancy. If you find anything, please file a bug or feature
request.

=item org (very highly experimental parser)

The document format used by the Org mode. Support for this module in
po4a is still in its infancy. If you find anything, please file a bug
or feature request.

=item Others supported formats

Po4a can also handle some more rare or specialized formats, such as the
Expand Down Expand Up @@ -860,9 +866,10 @@ L<Locale::Po4a::RubyDoc(3pm)>, L<Locale::Po4a::Texinfo(3pm)>,
L<Locale::Po4a::Text(3pm)>, L<Locale::Po4a::Xhtml(3pm)>,
L<Locale::Po4a::Yaml(3pm)>, L<Locale::Po4a::BibTeX(3pm)>,
L<Locale::Po4a::Docbook(3pm)>, L<Locale::Po4a::Halibut(3pm)>,
L<Locale::Po4a::LaTeX(3pm)>, L<Locale::Po4a::Pod(3pm)>,
L<Locale::Po4a::Sgml(3pm)>, L<Locale::Po4a::TeX(3pm)>,
L<Locale::Po4a::Wml(3pm)>, L<Locale::Po4a::Xml(3pm)>.
L<Locale::Po4a::LaTeX(3pm)>, L<Locale::Po4a::Org(3pm)>,
L<Locale::Po4a::Pod(3pm)>, L<Locale::Po4a::Sgml(3pm)>,
L<Locale::Po4a::TeX(3pm)>, L<Locale::Po4a::Wml(3pm)>,
L<Locale::Po4a::Xml(3pm)>.

=item

Expand Down
3 changes: 3 additions & 0 deletions lib/Locale/Po4a/Chooser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ sub list {
. "\n - "
. gettext("man: Good old manual page format.")
. "\n - "
. gettext("org: document format for Org mode.")
. "\n - "
. gettext("pod: Perl Online Documentation format.")
. "\n - "
. gettext("rubydoc: Ruby Documentation (RD) format.")
Expand Down Expand Up @@ -149,6 +151,7 @@ L<Locale::Po4a::Ini(3pm)>,
L<Locale::Po4a::KernelHelp(3pm)>,
L<Locale::Po4a::LaTeX(3pm)>,
L<Locale::Po4a::Man(3pm)>,
L<Locale::Po4a::Org(3pm)>,
L<Locale::Po4a::Pod(3pm)>,
L<Locale::Po4a::RubyDoc(3pm)>,
L<Locale::Po4a::Sgml(3pm)>,
Expand Down
Loading

0 comments on commit ba4036a

Please sign in to comment.