Live - Editor

The LiveEditor is an entirely browser-based collaborative Editor. It covers nearly all functionalities of other server-based solutions, but in this case, you don’t need a server nor a login. All your notes or courses will be directly stored within your browser.

Try the LiveEditor

In contrast to only image-uploads you can furthermore also upload audio and video files, as shown in the video below, and use any kind of LiaScript-template to add additional functionalities. Collaboration is based on Yjs .

Editing

The live update is deactivated to minimize computational costs and to stop errors from being show, when HTML, JavaScript is not fully written down. You have to update the preview by your own, simply by clicking onto the compilation button at the top or, to speed up things, by pressing Ctrl + S on your keyboard.

ShortcutAction
Ctrl + SUpdate the preview
Ctrl + FOpen document search
Ctrl + ASelect all
F1Open command line pallet
TabFormatting and jumping through table-cells
Tab + ShiftJump to previous cells
Ctrl + EMathJS - Evaluate expression
Ctrl + MMathJS - Simplify expression
Ctrl + OMathJS - To Tex-Formula

Snippets

We added 4 types of snippets, that are indicated by lia, hili, voice and :. This way you do not have to remember all details but can simply search through the different options. One way to start a document is by typing `liainit` and then hitting Enter. This will generate a document stub for you, which you can use as a starting point. When you update the preview, this help will be gone.

You have to extend the snippets-view by clicking onto the arrow on the right. This way, more information will be presented and you can start your experiments.

  1. Start typing lia in your markdown document to see the extended help, that can be explored via fuzzy-searching. Hit Tab or Enter for inserting your selected snippet.

  2. To ease the voice selection for different narrators, start typing voice and search through all possible voice settings.

  3. Syntax highlighting help is offered if you start typing hili followed by your language of choice. Since LiaScript applies the ace-editor, there is a matching done between highlight.js and ace. You can select your language from highlight.js, but it will be translated into the text in parentheses.

  4. Use : to search for any kind of emoji or Unicode - symbol.

You can use the mouse to navigate between the editor and the preview.

  1. Preview –> Editor: If you double-click on an element within the preview pane the cursor within the editor will automatically jump to the corresponding line.

  2. Editor –> Preview: Press Ctrl and double-click on a word with the editor, which will open the corresponding page within the preview.

Sharing

Sharing

There are multiple methods embedded to share your content:

  • Share editor …

    • collaboration link: For this you have the change the online status to WebRTC or WebSocket, by clicking onto the “Offline” button. Sharing this link allows you and other authors to directly collaborate on a document.
    • snapshot url: Use this, if you want to share an example within the editor. This will encode your LiaScript-content within the URL. Too long URLs might be truncated by different messaging services, so keep this in mind.
    • external resource: This will open an input field, where you can place the URL of an already existing course. This is especially useful, when you are teaching LiaScript. This way all start with the same state before they fork it. (forking means, create a new copy of the current course and store it in the browsers indexedDB)
  • Share course via …

    • GitHub gist link: Therefore your have to first export your course to a GitHub gist.
    • data-URI: This will use different encoding strategies to attach your course content to the URL. You should use the shortest one. This is an easy way for creating learning-nuggets, that you want to share without the necessity of storing or hosting them.
    • file URL: This will be visible if you have created or opened the editor as an external resource.
  • Download to …

    • README.md: This will download only the LiaScript-Markdown file.
    • Project-xxxxx.zip: If you have uploaded images or multimedia content to your browser, this will be included into the zip-file too.
  • Export to …

    • GitHub gist: If you have a GitHub account, this will allow to export your content directly to a GitHub gist. Currently we only support Markdown-files not the additional multimedia-content that you might have uploaded.

    If you have ideas for other export platforms, feel free to contact us or make a pull-request when you have updated the LiveEditor.

Organization

All of your content will be visible on the main editor-page as cards, you can use a full-text search in this view, but you can also add tags to your courses and use the following attributes to change the appearance ouf the course-cards:

<!--
author: Your Name

content: Short description of your course ...

logo: URL to an image

tags: topic 1, topic 2, topic n
-->

# Title

Multimedia

You can also upload and store multimedia-content (images, audio, video) to your browser ;-) … When uploading videos, you should use Chrome, the replay of local videos is somehow slow in Firefox. If you need for example simple diagrams, you can use also the LiaScript ASCII-art features.

You can copy and paste the following example into your document:

                                Multiline
  1.9 |
      |                 ***
    y |               *     *
    - | r r r r r r r*r r r r*r r r r r r r
    a |             *         *
    x |            *           *
    i | B B B B B * B B B B B B * B B B B B
    s |         *                 *
      | *  * *                       * *  *
   -1 +------------------------------------
      0              x-axis               1

or …

``` ascii
+------+   +-----+   +-----+   +-----+
|      |   |     |   |     |   |     |
| Foo  +-->| Bar +---+ Baz |<--+ Moo |
|      |   |     |   |     |   |     |
+------+   +-----+   +--+--+   +-----+
              ^         |
              |         V
.-------------+-----------------------.
| Hello here and there and everywhere |
'-------------------------------------'
```

Resources