Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.99 KB

readme.md

File metadata and controls

39 lines (25 loc) · 1.99 KB

DSPNote: Create Notebooks with Interactive Figures

Demo articles:

DSPNote is a static site generator specialized in creating notebooks with interactive figures. Some features:

  • Generative audio scripts with parameters: scripts written in Sporth can be included directly in the text, with an optional block diagram, and run in-browser with sliders to control variables
  • WebGL shaders with parameters: GLSL ES fragment shaders can be included, with auto-generated image fallbacks
  • Math typesetting; code blocks with syntax highlighting

Installing and Using

DSPNote requires Python 3.9 or above. The following commands should work similarly on all platforms. Clone or download the repository (master branch), and in the resulting folder, run the command:

pip install --editable .

This installs dspnote along with its dependencies. The dspnote command can build or serve a project containing markdown pages. An example project is included to show the structure expected by DSPNote.

# Assuming "example" is the correct path the example project:
dspnote serve example # serves locally for development and testing
dspnote build example # builds according to example/config.yml
dspnote figshot example # generates shader image fallbacks (requires Selenium)

For a more complex project using DSPNote, see pac-dev/notes.

To create a new project, copy the example folder and modify it. Each Markdown file in the content subfolder will generate an article. Assets for each article (eg. GLSL sources, images) are in a folder of the same name alongside the Markdown file.

Prior Art