<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/src/headers/LaTeXHeader, branch master</title>
<subtitle>Conversion between markup formats</subtitle>
<id>https://git.pashev.ru/pandoc/atom?h=master</id>
<link rel='self' href='https://git.pashev.ru/pandoc/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/'/>
<updated>2007-11-29T02:02:34Z</updated>
<entry>
<title>Moved everything from src into the top-level directory.</title>
<updated>2007-11-29T02:02:34Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-11-29T02:02:34Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=9a67a486c2dc98d14d9687ceb4b01befa09114df'/>
<id>urn:sha1:9a67a486c2dc98d14d9687ceb4b01befa09114df</id>
<content type='text'>
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1104 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Reverted back to state as of r1062.  The template haskell changes</title>
<updated>2007-11-03T23:27:58Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-11-03T23:27:58Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=fe684764e68e7eda281192f1fdd637a5bdb50e43'/>
<id>urn:sha1:fe684764e68e7eda281192f1fdd637a5bdb50e43</id>
<content type='text'>
are more trouble than they're worth.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@1064 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Use template haskell to avoid the need for templates:</title>
<updated>2007-11-03T22:14:03Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-11-03T22:14:03Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=4a841bfc5464907adea4cdd655485565565b40ae'/>
<id>urn:sha1:4a841bfc5464907adea4cdd655485565565b40ae</id>
<content type='text'>
+ Added library Text.Pandoc.Include, with a template haskell
  function $(includeStrFrom fname) to include a file as a string
  constant at compile time.
+ This removes the need for the 'templates' directory or Makefile
  target.  These have been removed.
+ The base source directory has been changed from src to .
+ A new 'data' directory has been added, containing the ASCIIMathML.js
  script, writer headers, and S5 files.
+ The src/wrappers directory has been moved to 'wrappers'.
+ The Text.Pandoc.ASCIIMathML library is no longer needed, since
  Text.Pandoc.Writers.HTML can use includeStrFrom to include the
  ASCIIMathML.js code directly.  It has been removed.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@1063 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Major change in the way ordered lists are handled:</title>
<updated>2007-08-08T02:43:15Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-08-08T02:43:15Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=e814a3f6d23f640b1aed5b7cb949459d514a3e33'/>
<id>urn:sha1:e814a3f6d23f640b1aed5b7cb949459d514a3e33</id>
<content type='text'>
+ The changes are documented in README, under Lists.
+ The OrderedList block element now stores information
  about list number style, list number delimiter, and
  starting number.
+ The readers parse this information, when possible.
+ The writers use this information to style ordered
  lists.
+ Test suites have been changed accordingly.

Motivation:  It's often useful to start lists with
numbers other than 1, and to have control over the
style of the list.

Added to Text.Pandoc.Shared:
+ camelCaseToHyphenated
+ toRomanNumeral
+ anyOrderedListMarker
+ orderedListMarker
+ orderedListMarkers

Added to Text.Pandoc.ParserCombinators:
+ charsInBalanced'
+ withHorizDisplacement
+ romanNumeral

RST writer:
+ Force blank line before lists, so that sublists will be handled
  correctly.

LaTeX reader:
+ Fixed bug in parsing of footnotes containing multiple paragraphs,
  introduced by use of charsInBalanced.  Fix: use charsInBalanced'
  instead.

LaTeX header:
+ use mathletters option in ucs package, so that basic unicode Greek
  letters will work properly.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@834 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Removed examplep from LaTeX header.</title>
<updated>2007-07-28T18:13:19Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-07-28T18:13:19Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=9c181f04102aad9c7feead43e3f9237ba86488d4'/>
<id>urn:sha1:9c181f04102aad9c7feead43e3f9237ba86488d4</id>
<content type='text'>
git-svn-id: https://pandoc.googlecode.com/svn/trunk@824 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Changed LaTeX writer to use the examplep package instead</title>
<updated>2007-07-28T01:10:04Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-07-28T01:10:04Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=b29f221cba949934dda402f96b1606cda8ed73a6'/>
<id>urn:sha1:b29f221cba949934dda402f96b1606cda8ed73a6</id>
<content type='text'>
of fancyvrb. examplep allows verbatim text in places where
fancyvrb does not, e.g. definition list terms, and provides
for line-breaking of verbatim text.
+ examplep code put in LaTeX header instead of being dynamically
  included, since it is frequently used, and people may want to
  customize the options.
+ documented dependency on examplep
+ added texlive-latex-extra as a "Suggested" package in debian/control
+ use examplep's \Q{} is now used instead of \verb:  note that 
  \Q requires backslash- escaping symbols in its scope.
+ modified README so that the verbatim sections will look good at
  shorter line lengths.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@807 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Removed lines from LaTeXHeader that will be supplied dynamically</title>
<updated>2007-07-22T20:14:59Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-07-22T20:14:59Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=e70bc561145c9e2a4cc8726f1f34e736f1d0dd12'/>
<id>urn:sha1:e70bc561145c9e2a4cc8726f1f34e736f1d0dd12</id>
<content type='text'>
by the LaTeX writer, depending on the document's content.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@772 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Added support for tables in markdown reader and in LaTeX,</title>
<updated>2007-01-15T19:52:42Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-01-15T19:52:42Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=60989d0637780787fb337b94af212f1ee9e1ae22'/>
<id>urn:sha1:60989d0637780787fb337b94af212f1ee9e1ae22</id>
<content type='text'>
DocBook, and HTML writers.  The syntax is documented in
README.  Tests have been added to the test suite.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@493 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>Added [breaklinks=true] to hyperref package in LaTeX header.</title>
<updated>2007-01-07T02:37:36Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2007-01-07T02:37:36Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=6f76111e925bf918d6b444f358f421e368ca05b9'/>
<id>urn:sha1:6f76111e925bf918d6b444f358f421e368ca05b9</id>
<content type='text'>
This produces nicer-looking output by default.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@449 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
<entry>
<title>initial import</title>
<updated>2006-10-17T14:22:29Z</updated>
<author>
<name>fiddlosopher</name>
<email>fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b</email>
</author>
<published>2006-10-17T14:22:29Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=df7b68225101966051f8b592a27127bf789eb81e'/>
<id>urn:sha1:df7b68225101966051f8b592a27127bf789eb81e</id>
<content type='text'>
git-svn-id: https://pandoc.googlecode.com/svn/trunk@2 788f1e2b-df1e-0410-8736-df70ead52e1b
</content>
</entry>
</feed>
