screenplay-js
Version:
A modern Typescript, Foutain screenplay parser. Convert Final Draft (.fdx) files to Fountain, and then parse Fountain markdown to HTML.
61 lines (60 loc) • 2.02 kB
TypeScript
declare class Sections {
title_page: RegExp;
scene_heading: RegExp;
scene_number: RegExp;
transition: RegExp;
dialogue: RegExp;
parenthetical: RegExp;
lyrics: RegExp;
action: RegExp;
centered: RegExp;
section: RegExp;
synopsis: RegExp;
note: RegExp;
note_inline: RegExp;
boneyard: RegExp;
page_break: RegExp;
line_break: RegExp;
emphasis: RegExp;
bold_italic_underline: RegExp;
bold_underline: RegExp;
italic_underline: RegExp;
bold_italic: RegExp;
bold: RegExp;
italic: RegExp;
underline: RegExp;
splitter: RegExp;
cleaner: RegExp;
standardizer: RegExp;
whitespacer: RegExp;
}
declare const sections: Sections;
declare const title_page: RegExp;
declare const scene_heading: RegExp;
declare const scene_number: RegExp;
declare const transition: RegExp;
declare const dialogue: RegExp;
declare const parenthetical: RegExp;
declare const lyrics: RegExp;
declare const action: RegExp;
declare const centered: RegExp;
declare const section: RegExp;
declare const synopsis: RegExp;
declare const note: RegExp;
declare const note_inline: RegExp;
declare const boneyard: RegExp;
declare const page_break: RegExp;
declare const line_break: RegExp;
declare const emphasis: RegExp;
declare const bold_italic_underline: RegExp;
declare const bold_underline: RegExp;
declare const italic_underline: RegExp;
declare const bold_italic: RegExp;
declare const bold: RegExp;
declare const italic: RegExp;
declare const underline: RegExp;
declare const splitter: RegExp;
declare const cleaner: RegExp;
declare const standardizer: RegExp;
declare const whitespacer: RegExp;
export { sections, title_page, scene_heading, scene_number, transition, dialogue, parenthetical, lyrics, action, centered, section, synopsis, note, note_inline, boneyard, page_break, line_break, emphasis, bold_italic_underline, bold_underline, italic_underline, bold_italic, bold, italic, underline, splitter, cleaner, standardizer, whitespacer, };