extwee
Version:
A story compiler tool using Twine-compatible formats
17 lines (11 loc) • 461 B
Markdown
While general compilation and de-compilation is possible using the CLI, more advanced usage patterns can be enabled through the API.
By installing `extwee`, developers can directly access its objects, parsers, and compilation functionality.
```javascript
import { Story, Passage } from 'extwee';
// Create the story.
const example = new Story( 'Example' );
// Add a new passage.
example.addPassage(new Passage( 'Test', 'Some Text') );
```