summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-31Oops, blank lines weren't parsed as blank lines.Martin Vilcans
This broke more or less everything in SPMD. Thanks, Anil!
2012-01-14Use   to avoid empty paragraphs in HTML.Martin Vilcans
Otherwise empty paragraphs won't be seen.
2012-01-14Ignore trailing \r and \n properly.Martin Vilcans
This caused the "two spaces creates blank line inside dialog" trick to fail.
2011-12-16A leading ">" on a line means it's parsed as a transition.Martin Vilcans
(But only if it's the last paragraph or followed by a slug.)
2011-12-16Possible to escape stars (\*) so they aren't parsed as emphasis.Martin Vilcans
2011-12-16A line with two spaces inside dialog keeps the dialog together.Martin Vilcans
Fixed according to spec.
2011-12-16Fixed some problems with old RichString tests.Martin Vilcans
Sometimes the segments of the RichString objects became RichString objects instead of Segment. That's what you get for dynamic typing I guess...
2011-12-10Allow use of stdin and stdout instead of files.Martin Vilcans
2011-12-10Use HTML character references for special characters.Martin Vilcans
E.g. write "&#233"; instead of "é".
2011-11-28Removed unused non-working old plain text formattingMartin Vilcans
2011-11-28Removed support for txt and pdf output from command line.Martin Vilcans
It doesn't work, so avoid confusion. See bug #1.
2011-11-28Added licensing information (MIT license)Martin Vilcans
2011-11-28Created context manager for working with HTML tags.Martin Vilcans
This simplifies the code a little.
2011-11-28Cleaned up a little CSS.Martin Vilcans
2011-11-28Support for centered action elements in HTML output.Martin Vilcans
2011-11-28Slug and Transition support only one line.Martin Vilcans
Show that in parameter to __init__.
2011-11-28Support the --bare option to not output a complete HTML document.Martin Vilcans
2011-11-28Changed CSS to style based on Jonathan Poritsky's work.Martin Vilcans
I couldn't copy his straigh as the HTML structure has changed.
2011-11-28Export complete HTML with CSS.Martin Vilcans
This should now be a bit more ideomatic HTML. For example, slugs are <h2> tags.
2011-11-27Renamed module annotated_html to html.Martin Vilcans
Annotation will be a flag to normal html, if we need it.
2011-11-26Some code style changesMartin Vilcans
2011-11-25Allow whitespace after "<" on centered line.Martin Vilcans
2011-11-22Fix incorrectly parsing when mixing italic and bold. Thx, Stu!Martin Vilcans
2011-11-15Fixed bold/underline etc. in FDX. (Capitalization mistake.)Martin Vilcans
2011-11-15Make sure upper case centered paragraph isn't parsed as dialogue.Martin Vilcans
2011-11-15Added support for >centering text<Martin Vilcans
2011-11-10Made RichString non-hierarchical (simpler).Martin Vilcans
Also: FDX output should have correct line breaks now.
2011-11-06Added script for running Screenplain.Martin Vilcans
2011-10-11Clarified some things in the READMEMartin Vilcans
2011-10-01Just some cleanup/reformattingMartin Vilcans
2011-09-29Added FDX outputMartin Vilcans
2011-09-27When exporting HTML, use HTML styles for formatting.Martin Vilcans
2011-09-26Use rich strings for all content.Martin Vilcans
2011-09-21PEP8 compliance.Martin Vilcans
2011-09-21Added requirement that a slug must be only one line.Martin Vilcans
Otherwise it is parsed as dialog.
2011-09-21Parse bold, italic and underline (no output yet).Martin Vilcans
2011-09-10Write to a stream instead of file name in exporters that support it.Martin Vilcans
2011-09-10Readme with info about how to install python2.5Martin Vilcans
2011-09-10A Transition must be followed by a slug, otherwise it's ActionMartin Vilcans
2011-09-10Removed server code from Screenplain library project.Martin Vilcans
2011-09-09Heed hard line breaks, per the SPMD spec.Martin Vilcans
2011-09-09Split code into more modules.Martin Vilcans
2011-09-08Added command-line optionsMartin Vilcans
2011-08-24Added CSS for annotated HTML outputMartin Vilcans
2011-08-24Added annotated HTML output.Martin Vilcans
(File was missing.)
2011-08-24Doing the least important styling first: The favicon!Martin Vilcans
2011-08-24New spec for transitions.Martin Vilcans
The rule that a transition must be followed by a slug is not implemented.
2011-08-24Serve annotated HTML from server so we can debug parsingMartin Vilcans
2011-08-24Ignore leading spaces and trailing EOL characters on lines.Martin Vilcans
2011-08-24Preliminary formatting for dual dialogMartin Vilcans