Edge AI & Software, Cloud Systems

MyST Editor

This is a MyST editor in a Preact component, using htm as the templating language.


Contributors
10

Created
3 years ago

License
Apache-2.0

Languages

javascript(75.58%)
json(9.18%)
markdown(8.31%)
html(3.26%)
Others(3.67%)

MyST Editor

Copyright (c) 2022-2024 Antmicro

This is a MyST editor in a Preact component, using htm as the templating language.

Features

Live preview

Changes in the text editor are immediately reflected in the preview.

Live Preview Demo

Templates

You can use document templates to quickly start documents and skip repetitive work.

Template Demo

Changing the Layout

The editor can display the text area and preview area separately, or in a split view.

Layout Demo

Live Collaboration

You can work on a document with multiple people at the same time.

Collaboration Demo

Exporting to PDF

You can export the rendered markdown to a PDF file.

PDF Demo

Diff

You can use the diff view to see exactly what changes have been made to the document as compared to the original state.

Diff Demo

Copy rendered contents

Copy and paste the document into other tools, such as email clients.

Copy Demo

Custom transforms

You can create custom transforms that turn specific regexes to custom output HTML. This is useful for implementing functionalities such as issue links, for example (as showcased in the demo):

const transforms = [{
  target: /[0-9a-z\-]+\/[0-9a-z\-]+#\d{1,10}/g,
  transform: (match) => {
    const [repo, issueId] = match.split('#');
    return `<a href="https://github.com/${repo}/issues/${issueId}">${match}</a>`
  }
}]

Then provide the transforms array as the transforms prop to MyST editor.

For more examples see the exampleTransforms object in the demo HTML.

Usage

Building the component

yarn
yarn build

Using as a library

You can embed this editor on another website.

After building, you should see a dist folder with MystEditor.css and MystEditor.js in it. Put those files alongside your HTML.

Add a link to the css file into yout HTML:

<link rel="stylesheet" href="MystEditor.css">

Add the following html where you want the editor to be:

<div id="myst"></div>

Add the following javascript as a module (of course add any props as needed):

import MystEditor, { html, render } from 'MystEditor.js'
render(html`<${MystEditor} />`, document.getElementById("myst"))

And voila!

Developing / running the demo

There is a demo available for the editor with some example markdown and templates, also useful for development of the component itself.

To run it locally, use:

yarn dev

Your terminal will display what URL to open to see the demo. You can edit the source files in src/ to modify the behavior of the component, with hot reload thanks to Vite.

An analogous demo deployed with GH actions from latest main should be deployed at https://antmicro.github.io/myst-editor/

Collaboration Server

The example server is located in the bin directory. To run it use:

cd bin
yarn && yarn server

You can change the port it runs on with setting a PORT environment variable.

MystEditor Props

Here are the props you can pass to the MystEditor component:

  • name (default: "myst_editor_textarea") - this will change the name of the textarea element which contains your markdown. Useful if you want the editor to be part of an html form.
  • id (default: "myst_editor_textarea") - changes the id of the textarea
  • initialMode (default: "Both", possibleValues: "Source" | "Preview" | "Both") - changes what is visible when you open the editor. By default you will see a split view with the text editor and preview.
  • initialText (default: "") - initial markdown text
  • includeButtons (default: defaultButtons) - An array of button definitions. A button definition is an object which has an action: () => void and either icon or text. As an example, a button could be defined as { text: "Button title", action: () => alert('clicked!') }
  • topbar (default: true) - whether to show the topbar
  • templateList - path/url to a JSON file containing your document templates. For an example see public/linkedtemplatelist.json.
  • transforms - custom transforms
  • collaboration - options related to live collaboration:
    • enabled (default: false)
    • wsUrl (example: ws://example:4444) - url of the websocket server
    • commentsEnabled - enable basic comment functionality,
    • resolvingCommentsEnabled - enable resolving comments,
    • username
    • room - name of the room to join, users will see others in the same room
    • color - color of the cursor seen by other users
  • spellcheckOpts - Configuration for the spellchecker. If the value is null or false then the spellchecker will be disabled.
    • dict (default: "en_US") - Name of the desired dictionary. For an example see public/dictionaries/en_US.
    • dictionaryPath (default: "/dictionaries") - Path to a folder with dictionaries. For an example see public/dictionaries/.
  • backslashLineBreak (default: true) - treat \ as a line break even when it is at the end of a paragraph/block
  • additionalStyles (CSSStylesheet | CSSStylesheet[]) - extra CSS stylesheets to customize the component

License

Apache 2.0

Relevant projects

Nothing found

Apologies, but no results were found.

If you’d like to build a commercial product based on our open source solutions, reach out to us via the contact form.