summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-21 19:55:56 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-21 19:55:56 +0000
commit6d8f0e29d99cd44e8c7c9fafa3b116ae3a83a49e (patch)
tree7be6c06e838524b47b4cf028ca1bfb4c25e6ce2b
parent2df03311c3e0ae9dfabe546cf313cf1ace4b3ad8 (diff)
Updated website feature descriptions.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@744 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r--web/index.txt57
1 files changed, 41 insertions, 16 deletions
diff --git a/web/index.txt b/web/index.txt
index e11de189e..9a12a347d 100644
--- a/web/index.txt
+++ b/web/index.txt
@@ -8,23 +8,26 @@ to another, and a command-line tool that uses this library. It can read
and it can write [markdown], [reStructuredText], [HTML], [LaTeX], [ConTeXt],
[RTF], [DocBook XML], [groff man], and [S5] HTML slide shows.
-- A real markdown parser, not based on regex substitutions.
+Pandoc features
+
- Modular design, using separate writers and readers for each
- supported format, for easy extensibility.
-- [More accurate] and [faster], in many cases, than `Markdown.pl`.
+ supported format.
+- A real markdown parser, not based on regex substitutions.
+ [More accurate] and [faster], in many cases, than `Markdown.pl`.
- Multiple output formats--HTML, Docbook XML, LaTeX, ConTeXt,
- reStructuredText, RTF, groff man pages, S5 slide shows--generated natively,
- with no XSLT postprocessing.
-- Converts *to* markdown from HTML, LaTeX, and reStructuredText.
+ reStructuredText, RTF, groff man pages, S5 slide shows--all
+ generated natively, with no XSLT postprocessing.
- Unicode support.
- Optional "smart" quotes, dashes, and ellipses.
-- Document metadata (title, author, date).
-- Inline LaTeX math and LaTeX commands.
-- [ASCIIMathML] support for equations in HTML.
-- Footnotes, tables, and definition lists in all output formats.
- Automatically generated tables of contents.
-- Compatibility mode to turn off syntax entensions and emulate
- `Markdown.pl`.
+- [ASCIIMathML] support for equations in HTML.
+- Extensions to markdown syntax:
+ + Document metadata (title, author, date).
+ + Footnotes, tables, and definition lists.
+ + Inline LaTeX math and LaTeX commands.
+ + Superscripts, subscripts, and strikeout.
+ + Compatibility mode to turn off syntax entensions and emulate
+ `Markdown.pl`.
- Convenient wrapper scripts:
+ `html2markdown` makes it easy to produce a markdown version
of any web page.
@@ -97,10 +100,32 @@ You may view existing bug reports and submit new ones at
# News
-- Version 0.4 released (?? July 2007). Features:
- - list
- - of
- - features
+- Version 0.4 released (?? July 2007).
+
+ For users:
+
+ + New output formats: ConTeXt and groff man.
+ + Support for definition lists and tables.
+ + Support for superscript, subscript, and strikeout.
+ + Support for automatically generated tables of contents.
+ + Automatically generated unique identifiers in HTML headers.
+ + Markdown links now printed as inline links by default,
+ unless `--reference-links` option is specified.
+ + Many bugs fixed.
+
+ For programmers:
+
+ + Added a Text.Pandoc module that exports the main functions
+ and data structures. Library documentation includes a sample
+ program using the library.
+
+ Under the hood:
+
+ + Refactored to avoid reliance on GHC's `Text.Regex`, which
+ is slow and does not support unicode.
+ + Removed Key and Note block elements and simplified parsers.
+ + Improved handling of character entities.
+ + HTML output is now generated using `Text.XHtml`.
# Disclaimer