This is a demonstration of the demonic project, specifically by running editable code snippets from a markdown-converted document.

demonic was inspired by mdbook, which is a great Rust documentation project. In mdbook, you can edit and run Rust code right from the document (e.g. Hello World)! I really liked this feature, but wanted to be able to send input back to the running process.

demonic-web allows one to do this, and demonic-docs integrates it with html-ized markdown documents. Go ahead and play around and edit any of the code blocks below, and click on the ‘▶’ button to run them!

C

Copied!

C++

Copied!

Go

Copied!

Java

Copied!

JavaScript (Node.js)

Copied!

Python

Copied!

Racket

Copied!

Ruby

Copied!

Rust

Copied!

Shell

Copied!

Support and Roadmap

This project aims to allow unmodified markdown files to have editable and runnable code blocks. But there needs to be a way for users to tell which program blocks they want to run and which they don’t. Unfortunately, this requires a modification to the markdown files! In this instance, the following markdown code had a “.norun” class addition, which tells demonic not to add a “▶” button to the code block.

Copied!

    {: .norun}
    ```python
    print("Don't run me!")
    ```

Copied!

print("Don't run me!")

Markdown files converted by Pandoc are the only supported format currently, but I’d like to add lots of others! I’d like to add the following features:

Adding support requires playing around with the resulting DOM structure of each converter and file type, and being able to extract the language and code of each code block.