0.5.0 • Published 3 years ago

narrative-schema-label v0.5.0

Weekly downloads
11
License
BSD-3-Clause
Repository
github
Last release
3 years ago

Literate Visualization · License: BSD 3-Clause Azure Pipelines status Code style: Prettier Contributor Covenant

A light-touch approach to designing, building and describing visualization. Here you will find

Installing litvis

Litvis documents can be viewed and created in either the Atom or VS Code editors:

  1. If you don't have it already, install Node.js. This will allow you to use npm, used for installing some of the other necessary software.

  2. Open a terminal window and install Elm, Prettier and Prettier Elm plugin with the following command:

    npm install --global elm prettier prettier-plugin-elm

    If you cannot install with npm because of 'EACCES write permission errors', see these instructions on how to prevent them.

  3. Install either the Atom or VS Code editor.

  4. Depending on which editor you wish to use, install the litvis extensions:

    If using Atom:

    • Select Atom → Preferences → Install (or File → Settings → Install on Windows)

    • Search for markdown-preview-enhanced-with-litvis and then click install next to the returned result (main litvis functionality).

    • Search for prettier-atom and install (auto-formats code).

    • Search for language-elm and install (syntax highlighting of Elm code).

    • Search for language-markdown and install (markdown syntax highlighting).

    • When you create your first document in Atom, you may be asked to install further dependencies such as linter, linter-ui-default and busy-signal. Install these and any other dependencies if requested.

    If using VS Code:

    • Select View → Extensions

    • Search for markdown-preview-enhanced-with-litvis and then click install next to the returned result (main litvis functionality).

    • Search for prettier - Code formatter and install (auto-formats code).

    • Search for elm and install (syntax highlighting of Elm code).

You should now be good to go! Get started by writing your first litvis document and looking at these tutorials.

‘Hello world’ in literate Elm

Adding litvis attribute literate (or l) to ```elm blocks in markdown automatically compiles and executes the code in real time. Attribute raw (or r) is the simplest way to see the result.

helloworld

examples/features/helloWorld.md

Simple litvis chart

A litvis code block with attribute visualize (or v) automatically renders the declared symbol using elm-vega / vega-lite.

simplechart

examples/features/simpleChart.md

Code referencing across blocks

By default, litvis code blocks share the same execution context, which means that an Elm symbol defined in one block and can be referenced in another block. It is not necessary to maintain the order of blocks to make referencing work.

codereferencingcodeblocks

examples/features/codeReferencingAcrossBlocks.md

Code referencing with triple hat notation

Symbols from Elm code blocks can be referenced in any part of the markdown using triple hat notation (^^^), e.g. ^^^elm v=barChart^^^.

codereferencingtriplehat

examples/features/codeReferencingWithTripleHatNotation.md

Code referencing with parameters

Triple hat references accept parametrized function calls, which makes it easy to combine text with graphics and produce families of related graphics. This means that small multiples and sparklines are straightforward.

codereferencingparams

examples/features/codeReferencingWithParameters.md

Debugging vega-lite specs

Replacing v with r for raw or j for json makes it possible to look into generated vega-lite specs. These attributes follow the same ordering rules as l and v.

debuggingvegalite

examples/features/debuggingVegaLite.md

Interaction

Adding interactive to a code block with v or a triple hat reference makes visualizations live if interaction is described within Spec. User input controls can be added to the document, if desired.

interaction

examples/features/interaction.md

Mutliple execution contexts

Although a single Elm execution context may be sufficient in many litivs narratives, context isolation may be desired in some cases. A number of code block attributes such as context, id, follows, isolated and siding enable fine-grained control of Elm symbol visibility, thus making it easier to accomplish certain tasks.

A siding (or s) is a shortcut for isolated follows=default. This keyword makes previously defined symbols in default context available within the code block, but avoids name clashes with the following blocks.

codesidings

examples/features/codeSidings.md

Branching narratives

A litvis narrative can be split between multiple markdown documents, where each document follows its parent. This enables routine use of parallel branching narratives that assemble and structure document trees. Each branch in a tree can represent alternative potentially competing designs each with their own rationale.

branchingnarratives

examples/features/branching/root.md > examples/features/branching/branchA.md > examples/features/branching/branchB.md

Narrative schemas

A litvis narrative can be linked to a set of YAML files, which define labels, rules and styling. These narrative schemas can be thought of as an analogue of schemas more usually found in declarative programming contexts such as JSON and XML schema. The purpose of the schema is to provide a set of structured guidelines to assist in writing the narrative content around a visualization design. This can be thought of as form of scaffolding to assist in the process of design exposition. Schemas can be used to validate litvis documents.

narrativeschemas

examples/crossQuardChart.md > schemas/idiom.yml

Linting

A litvis document that is being previewed is constantly checked against various issues. These issues are displayed in the editing environment and help with debugging. If a visualization has been successfully rendered before the issue had occurred, its old preview is shown to avoid unwanted markup reflows.

linting

documents/tutorials/geoFormats.md

Automatic code formatting

Litvis integrates with Prettier and its Elm plugin, which enables seamless document formatting as the narrative is being written. A file is automatically prettified on save or when the Format command is explicitly called. Formatting keeps litvis files in a readable and maintainable state, which eases collaboration and reduces distraction from the higher-level tasks.

formatting1000

examples/lunarEclipse.md