UNPKG

extwee

Version:

A story compiler tool using Twine-compatible formats

10 lines (9 loc) 377 B
/** * Parses Twine 1 HTML into a Story object. * @see {@link https://github.com/iftechfoundation/twine-specs/blob/master/twine-1-htmloutput-doc.md Twine 1 HTML Documentation} * @function parse * @param {string} content - Twine 1 HTML content to parse. * @returns {Story} Story object */ export function parse(content: string): Story; import { Story } from '../Story.js';