Git Product home page Git Product logo

extwee's Issues

Consider loose parsing modes

It'd be nice to optionally allow parsing HTML, for example, to permit missing attributes in <tw-storydata>. I get that you would want a strict mode by default, but it feels a bit overkill to block a story from being parsed if it's missing an IFID, for example.

Search '{$npm}/lib/node_modules/extwee/story-formats' directory if a full path isn't provided.

It would be really helpful to be able to use ext wee -c file.twee -s chapbook-1.2.0 -o file.html where the story format is derived from the '{$npm}/lib/node_modules/extwee/story-formats' directory (using the latest version of a story format if a version number isn't provided, ie: "…-s chapbook …") if a full path (relative or absolute) isn't provided.

Having to always remember to enter the full path to various story-formats is a bit painful.

Add support for searching SFA JSON download

Following downloading JSON database file, allow users to search for specific versions of story formats.

In Twine, story formats are saved as part of a story-formats.json file using the following format:

[
  {
  "id": "UUIDv4",
  "name": "Story Format Name",
  "version": "Semantic Version",
  "url": "relative location in the story-formats folder",
  "userAdded": true
  }
]

Output attributes aren't escaped in HTML or Twee

I noticed that right now the output methods of Passage don't escape things outside of passage text that could cause parsing problems in the output. Some issues I see:

console.log(new Passage('"Test"', '', ['"bad"']).toTwine2HTML());

yields

<tw-passagedata pid="1" name=""Test"" tags=""bad"" ></tw-passagedata>

and on the Twee side:

console.log(new Passage('Where do tags begin? [well', '', ['hmm']).toTwee());

yields

:: Where do tags begin? [well [hmm]

The Twee spec is ambiguous about what to do here... FWIW, Twine outputs this currently:

:: Where do tags begin? \[well [hmm] {"position":"600,275","size":"100,100"}

Allow direct access to story passages

It'd be nice if I could work with the passages array directly instead of having to use indirect methods like forEachPassage(). One use case (related to #443) was that I wanted to set the start of a story to the first passage in the array (because I didn't care about the starting point; I just wanted to get HTML). I could see myself wanting to use map or reduce on the passages array for other purposes, too.

Parsing Twine 2 HTML doesn't unescape passage text

const story = parseTwine2HTML(`<tw-storydata name="test" ifid="test" startnode="1">
  <tw-passagedata name="test" pid="1">&lt;&quot;&apos;</tw-passagedata>
</tw-storydata>`);

console.log(story.getPassageByName('test').text);

yields &lt;&quot;&apos;. I think it should return <"' instead. This came up when I converted HTML output by Twine to Twee by doing essentially parseTwine2HTML(source).toTwee()--I end up with Twee source like this:

&gt; [[&quot;We&#x27;re both exhausted.&quot;]]

Add: All objects should be well-documented

Passage, Story, and StoryFormat should be well-documented:

  • Every property should be included as @property field.
  • Every class should have @class and @classdescfields.
  • Every class should have @example.

Add documentation on CLI

Create documentation on the following:

  • Compiling Twee 3 + Twine 2 story format into Twine 2 HTML.
  • De-compiling Twine 2 HTML into Twee 3.
  • Compiling Twee 3 + Twine 1 engine.js + header.html + code.js into Twine 1 HTML.
  • De-compiling Twine 1 HTML into Twee 3.

Add documentation on API

Add documentation on the following:

  • Creating passage and story objects directly.
  • Exporting a story to Twee 3.
  • Exporting a story to Twine 2 JSON.
  • Combining a Twine 2 story format + Story into Twine 2 HTML.
  • Parsing Twine 2 JSON into Story.
  • Parsing Twine 1 HTML into Story (and Twee 3).
  • Dynamically creating passages.

Command to help manage/update story-formats.

Instead of editing the formats by hand using the '{$npm}/lib/node_modules/extwee/story-formats' directory it would be helpful to be able to list, add, remove, and update the various story formats via the extwee command. Tweego has the ability to list the story-formats currently available in its configured story-format directory which is very helpful as the directory is usually easy to access (as the user has had to specify it) and can be configured via the TWEEGO_PATH environment variable.

Another option would be to provide users with a command that would open a Finder (or Windows and Linux equivalent) window containing the story-formats directory which would enable users to easily manage the various story-formats on their own.

Add browser testing of webpacked Extwee

  • Add testing of Webpack version of Extwee.
    • Parse (Twine 1 HTML, Twine 2 HTML, Twine 2 Archive HTML, Twine 1 TWS, and Twee)
    • Compile (Twine 1 HTML, Twine 2 HTML, and Twine 2 Archive HTML)
    • Generate Twee and JSON

(Borrow from TwineSpace's use of Jest Puppeteer with per-suite setup.)

Add support for Twine 2 Archive

Read and write Twine 2 Archive files.

An archive is "one or more" <tw-storydata> elements.

  • Add Twine2ArchiveParser.js + tests
  • Add Twine2ArchiveWriter.js + tests

Expand API

  • Add parseJSON()
  • Add parseTwine1HTML()
  • Add parseTwine2ArchiveHTML()
  • Add compileTwine2ArchiveHTML()
  • Add compileTwine1HTML()

Add JSDocs

Add JSDocs support for generating API documentation.

  • Add docs folder.
  • Add JSDocs.
  • Add clean theme.

Add support for saving compilation options in extwee.config.json

Originally, Extwee 2.0 was going to support a extwee.config.json file for saving compilation options between builds. This should return in Extwee 2.4 as part of SFA support (as it makes more sense to save the story format version from another database).

Add: Every parse and compile should reference spec or doc

Every parse() and compile() function should reference specific Twine Specs file using @link{} JSDocs:

  • JSON parse
  • StoryFormat parse
  • Twee parse
  • Twine 1 HTML compile
  • Twine 1 HTML parse
  • Twine 2 HTML compile
  • Twine 2 HTML parse
  • Twine 2 Archive HTML parse
  • Twine 2 Archive HTML compile
  • Twine 1 TWS parse

Consider TypeScript types

Even if you're not particularly in love with TypeScript, adding declarations makes life easier for those (being self-serving here) who do and doesn't force you into a TypeScript workflow. If you're interested in getting help with this, it's something I could probably pitch in with.

`StoryMetadata` vs `StoryData`

The twee3 spec calls the metadata passage StoryData. Extwee seems to be looking for a passage called StoryMetadata from what I can see in the source code. I have not actually tried out Extwee yet, but I plan to, so I don't want to give the impression I did.

Stricter Twee output for required and optional StoryData properties

The ifid is the only required property of the StoryData passage.

The use of Story.toTwee() should:

  • Detect if internal IFID is not in UUIDv4 format, generate a warning, and create a new IFID.
  • Avoid generating format, format-version, start, tag-colors, or zoom unless those properties have non-default values.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.