@iooxa/editor
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

@iooxa/editor

@iooxa/editor on npm MIT License CI

Overview & Goals

  • Provide a typed schema for writing reactive scientific documents using iooxa components
    • Uses Web Components in the rendered HTML output for non-standard components
    • Uses standard html for all other compnents, with no styling enforced
  • Interoperability with CommonMark markdown and myst
    • Through fromMarkdown and toMarkdown methods
  • Provide components for WYSIWYG editing of reactive documents
    • Initial library won't have a drop-in UI for the editor, although there will probably be a simple demo

Choices

  • The internal representation for the library is a ProseMirror Document structure (that can be rendered as JSON)
  • markdown-it is used parse and tokenize markdown content

Schema

The schema has Nodes and Marks where Nodes are basically a block of content (paragraph, code, etc.), and Marks are inline modifications to the content (bold, emphasis, links, etc.). See the ProseMirror docs for a visual explanation.

Overview of Nodes

Overview of Marks

  • link
  • code
  • em
  • strong
  • superscript
  • subscript
  • strikethrough
  • underline
  • abbr

Simple Example

This moves from markdown --> JSON --> HTML. The JSON is the intermediate representation for @iooxa/editor.

import { Schema, nodes, marks, fromMarkdown, toHTML } from '@iooxa/editor';
import { JSDOM } from 'jsdom';

const schema = new Schema({ nodes, marks });

const content = '# Hello `@iooxa/editor`!';
const doc = fromMarkdown(content, schema);

console.log(doc.toJSON());
>> {
    "type": "doc",
    "content": [
      {
        "type": "heading",
        "attrs": { "level": 1 },
        "content": [
          { "type": "text", "text": "Hello " },
          {
            "type": "text",
            "marks": [ { "type": "code" } ],
            "text": "@iooxa/editor"
          },
          { "type": "text", "text": "!" }
        ]
      }
    ]
  }

// Assuming we are in node, just use `document` if in a browser!
const { document } = new JSDOM('').window;

// Now move the document back out to html
const html = toHTML(doc, schema, document);

console.log(html);
>> "<h1>Hello <code>@iooxa/editor</code>!</h1>"

Roadmap

  • Integrate other @iooxa/components as nodes
  • Improve equation and start to go to/from various myst syntax for this
  • Add figure properties (name, width, caption etc.)
  • Provide citations, probably bring in a bibtex parser
    • Introduce citation and reference component to iooxa/components or article
  • Add overlaping roles/directives with myst (e.g. see executablebooks/meta#70) for pointers
    • Add the necessary pieces to iooxa/components that are not basic html (myst uses sphinx for the heavy lifting, cross-refs etc.)
  • Provide other sereializers from the document strucutre (e.g. latex or simple html without iooxa/components, possibly idyll)

See also:

  • Idyll Lang has a different markdown-like serialization with very similar base components to iooxa - see iooxa/article#8 for a comparison.

Readme

Keywords

none

Package Sidebar

Install

npm i @iooxa/editor

Weekly Downloads

0

Version

0.0.6

License

MIT

Unpacked Size

99.6 kB

Total Files

93

Last publish

Collaborators

  • rowanc1