Code Monkey home page Code Monkey logo

metalsmith-fountain's Introduction

metalsmith-fountain

npm

A Metalsmith plugin to convert Fountain screenplay files.

This is based on a modified parser from Matt Daly's Fountain.js

Installation

$ npm install metalsmith-fountain

Options

  • title_page: Whether to include HTML for the title page in the output file (optional, default: true)
  • content_metadata: Whether to include the HTML for the title page and script in metalsmith metadata (may be large!) (optional, default: false)
  • preserve_title: Whether to override the title attribute in the metalsmith metadata (optional, default: false)
  • preserve_date: Whether to override the date attribute in the metalsmith metadata. Automatically chooses date if available, then draft_date (optional, default false)

Usage

This plugin will add most Fountain metadata, accessible from the fountain object in Metalsmith's metadata. YAML front-matter is supported alongside Fountain metadata, like so:

---
title: Big Fish
credit: written by
author: John August
---
Title: Big Fish
Credit: written by
Author: John August
...

Although any key and value can be used in the front-matter, only the following keys will be read from the Fountain metadata into the fountain object like so:

fountain: {
  title: 'Title'
  credit: 'Credit Line'
  author: 'Author'
  authors: 'Authors'
  source: 'Source'
  notes: 'Notes'
  draft_date: 'Draft Date'
  date: 'Date'
  contact: 'Contact Details'
  copyright: 'Copyright'
  content: {  
    // Only if enabled with the `content_metadata` flag!
    title_page: '<h1>Title</h1><etc/>',
    script: '<p>HTML content of the script</p>'
  }
}

By default, the title and date attributes in Metalsmith's metadata will also be overridden with values from the Fountain metadata (where date takes priority over draft_date if both are present). To disable this, set preserve_title and preserve_date to false, respectively.

Styling

This example responsively styles most of the output HTML. Currently, it is recommended to look at that example and the output HTML to get a sense of what to style.

License

MIT

metalsmith-fountain's People

Stargazers

Alex Hall avatar

Watchers

huw avatar  avatar

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.