Folding

Folding is a way to display your rendered FoldingText content on the web.

I’ve implemented what was the most important features for me: folding, tag filtering and todo lists. Feel free to fork & send pull requests if you want additional features.

Usage

Include "folding.js" and "folding.css". Folding.js exports one function foldIt. To use it you can either pass it a node list foldIt(document.getElementsByClassName('post-content')), a single element foldIt(document.getElementById('fold-this')) or simply call foldIt() to have it process all elements with the class “folding”.


    // Process all elements with the class "folding".
    foldIt();

    // Process a single element
    foldIt(document.getElementById('fold-this'));

    // Process all elements in a node list.
    foldIt(document.getElementsByClassName('post-content'));
    

Milestone A

In which we learn to navigate and interact with the world.

Frontend.todo

Gameplay.todo

Milestone B

In which two or more people can take turns to interact with the world.

Gameplay.todo

Milestone C

In which said people start beating the crap out of each other (a natual progression of events).

Terrain generation.todo

Gameplay.todo

Milestone D

In which constructive things also can be done.

Gameplay.todo