jumpcut 1.0.0

JumpCut is a library and CLI for converting Fountain-formatted text files into FDX, HTML, JSON, text, and PDF formats.
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "fdx")]
pub mod fdx;
pub mod fountain;
#[cfg(feature = "html")]
pub mod html;
#[cfg(feature = "pdf")]
pub mod pdf;
#[cfg(any(feature = "fdx", feature = "html"))]
pub(crate) mod shared;
pub mod text;