aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Some pep8 compliance regarding whitespaceMartin Vilcans2012-02-011-1/+2
|
* Updated readme to reflect that we don't support PDF output yet.Martin Vilcans2012-01-311-2/+4
|
* Transitions no longer have to be followed by a scene heading.Martin Vilcans2012-01-312-8/+16
|
* Changed rules for forced Scene Headings (slugs).Martin Vilcans2012-01-312-7/+22
| | | | | | | | | | | | | Double linebreaks no longer signify a slug. Instead you can force one with a leading period: e.g. FADE IN: .DARKNESS (whatever that would look like!?)
* Added tests on actual input/output files.Martin Vilcans2012-01-314-0/+96
| | | | | This is to make sure everything works from the command-line level to avoid silly mistakes like the last bug.
* Oops, blank lines weren't parsed as blank lines.Martin Vilcans2012-01-311-1/+1
| | | | | | This broke more or less everything in SPMD. Thanks, Anil!
* Use   to avoid empty paragraphs in HTML.Martin Vilcans2012-01-141-11/+4
| | | | Otherwise empty paragraphs won't be seen.
* Ignore trailing \r and \n properly.Martin Vilcans2012-01-142-18/+34
| | | | | This caused the "two spaces creates blank line inside dialog" trick to fail.
* A leading ">" on a line means it's parsed as a transition.Martin Vilcans2011-12-162-5/+30
| | | | (But only if it's the last paragraph or followed by a slug.)
* Possible to escape stars (\*) so they aren't parsed as emphasis.Martin Vilcans2011-12-162-21/+49
|
* A line with two spaces inside dialog keeps the dialog together.Martin Vilcans2011-12-162-3/+20
| | | | Fixed according to spec.
* Fixed some problems with old RichString tests.Martin Vilcans2011-12-162-13/+40
| | | | | | Sometimes the segments of the RichString objects became RichString objects instead of Segment. That's what you get for dynamic typing I guess...
* Allow use of stdin and stdout instead of files.Martin Vilcans2011-12-101-11/+29
|
* Use HTML character references for special characters.Martin Vilcans2011-12-101-1/+1
| | | | E.g. write "&#233"; instead of "é".
* Removed unused non-working old plain text formattingMartin Vilcans2011-11-281-60/+0
|
* Removed support for txt and pdf output from command line.Martin Vilcans2011-11-281-4/+2
| | | | It doesn't work, so avoid confusion. See bug #1.
* Added licensing information (MIT license)Martin Vilcans2011-11-2814-0/+73
|
* Created context manager for working with HTML tags.Martin Vilcans2011-11-281-44/+64
| | | | This simplifies the code a little.
* Cleaned up a little CSS.Martin Vilcans2011-11-281-2/+2
|
* Support for centered action elements in HTML output.Martin Vilcans2011-11-282-9/+26
|
* Slug and Transition support only one line.Martin Vilcans2011-11-282-10/+14
| | | | Show that in parameter to __init__.
* Support the --bare option to not output a complete HTML document.Martin Vilcans2011-11-282-4/+33
|
* Changed CSS to style based on Jonathan Poritsky's work.Martin Vilcans2011-11-282-15/+25
| | | | I couldn't copy his straigh as the HTML structure has changed.
* Export complete HTML with CSS.Martin Vilcans2011-11-283-53/+172
| | | | | This should now be a bit more ideomatic HTML. For example, slugs are <h2> tags.
* Renamed module annotated_html to html.Martin Vilcans2011-11-272-5/+7
| | | | Annotation will be a flag to normal html, if we need it.
* Some code style changesMartin Vilcans2011-11-267-24/+44
|
* Allow whitespace after "<" on centered line.Martin Vilcans2011-11-252-7/+15
|
* Fix incorrectly parsing when mixing italic and bold. Thx, Stu!Martin Vilcans2011-11-222-4/+29
|
* Fixed bold/underline etc. in FDX. (Capitalization mistake.)Martin Vilcans2011-11-152-11/+11
|
* Make sure upper case centered paragraph isn't parsed as dialogue.Martin Vilcans2011-11-152-7/+15
|
* Added support for >centering text<Martin Vilcans2011-11-154-12/+54
|
* Made RichString non-hierarchical (simpler).Martin Vilcans2011-11-105-206/+338
| | | | Also: FDX output should have correct line breaks now.
* Added script for running Screenplain.Martin Vilcans2011-11-061-0/+9
|
* Clarified some things in the READMEMartin Vilcans2011-10-111-2/+10
|
* Just some cleanup/reformattingMartin Vilcans2011-10-014-4/+5
|
* Added FDX outputMartin Vilcans2011-09-293-1/+132
|
* When exporting HTML, use HTML styles for formatting.Martin Vilcans2011-09-273-17/+53
|
* Use rich strings for all content.Martin Vilcans2011-09-265-16/+72
|
* PEP8 compliance.Martin Vilcans2011-09-2110-4/+32
|
* Added requirement that a slug must be only one line.Martin Vilcans2011-09-212-3/+18
| | | | Otherwise it is parsed as dialog.
* Parse bold, italic and underline (no output yet).Martin Vilcans2011-09-213-4/+233
|
* Write to a stream instead of file name in exporters that support it.Martin Vilcans2011-09-104-22/+41
|
* Readme with info about how to install python2.5Martin Vilcans2011-09-101-0/+5
|
* A Transition must be followed by a slug, otherwise it's ActionMartin Vilcans2011-09-102-5/+12
|
* Removed server code from Screenplain library project.Martin Vilcans2011-09-107-2683/+12
|
* Heed hard line breaks, per the SPMD spec.Martin Vilcans2011-09-093-8/+48
|
* Split code into more modules.Martin Vilcans2011-09-098-102/+103
|
* Added command-line optionsMartin Vilcans2011-09-083-10/+36
|
* Added CSS for annotated HTML outputMartin Vilcans2011-08-241-0/+64
|
* Added annotated HTML output.Martin Vilcans2011-08-241-0/+54
| | | | (File was missing.)