Twine Story Map Data File

Story Data Map (JSON)

Export format for story review. Not a direct Twine import file.

// Map data will be generated here.
Story: Untitled Narrative
0
Total Passages
0
Dead Ends

Link Analysis

Define New Passage

Current Story Map

No passages defined.

Story Metadata


Data Management

Author: ${document.getElementById('twine-cfg-author').value || 'Anonymous'}

Data Map (JSON Structure)

${jsonText}

Passage List Summary

    ${twineMap.map(p => `
  • ${p.title} (${(p.links_raw.match(/->/g) || []).length} Links) - ${p.text.substring(0, 50)}...
  • `).join('')}
`; const opt = { margin: 0.5, filename: 'Twine_Story_Map.pdf', image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } }; html2pdf().set(opt).from(tempDiv).save(); }; })();
Scroll to Top