Skip to content

Ménneu Markdown Notebook - Edit markdown locally w/o installing any apps.

License

Notifications You must be signed in to change notification settings

shellyln/menneu-md-notebook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ménneu Markdown Notebook

Edit markdown locally w/o installing any apps.

Using Ménneu document processor to render the markdowns.

Getting started

  1. Download this repository as zip archive, and extract it.
  2. Initialize the git repository on the extracted folder.
    $ git init
  3. Copy article template from ./articles/*.html and open from the editor you like.
    • Article-1.html : Normal markdown format.
    • ScriptableArticle-1.html : Markdown format that Lisp LSX script expansion is enabled.
    • Notebook-1.html : JS Notebook markdown format.
      • Lisp LSX script expansion is enabled.
  4. Preview the markdown by opening the browser.
  5. Save your contents and commit to the repository.

Playground

https://shellyln.github.io/menneu/playground.html

Use via CDN

Replace *.js URLs in the <script> tags of ./articles/*.html .

https://cdn.jsdelivr.net/npm/[email protected]/articles/js/menneu.min.js
https://cdn.jsdelivr.net/npm/[email protected]/articles/js/mkd+lsx.js
https://cdn.jsdelivr.net/npm/[email protected]/articles/js/mkd.js
https://cdn.jsdelivr.net/npm/[email protected]/articles/js/notebook.js

  • Article-1.html
<!DOCTYPE html><head><meta charset="UTF-8"></head><body><script type="text/markdown">

# Hello!

</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/articles/js/mkd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/articles/js/menneu.min.js" onload="start({title: 'My Notebook 1'})"></script>
</body>
  • ScriptableArticle-1.html
<!DOCTYPE html><head><meta charset="UTF-8"></head><body><script type="text/markdown">

# Hello!

</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/articles/js/mkd+lsx.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/articles/js/menneu.min.js" onload="start({title: 'My Notebook 1'})"></script>
</body>
  • Notebook-1.html
<!DOCTYPE html><head><meta charset="UTF-8">
<!-- <script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]"></script> -->
</head><body><script type="text/markdown">

# JS Notebook

%%%(script (@ (src "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML") (crossorigin "anonymous") (async)))
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/articles/js/notebook.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/articles/js/menneu.min.js" onload="start({title: 'My Notebook 1'})"></script>
</body>

Notes

  • To save the repository size, move articles/js/menneu.min.js and articles/js/menneu.min.js.map outside the repository.
  • You should escape some characters if script expansion is enabled.
    See this document.

Gallery

notebook1

notebook2

notebook3

notebook4


License

ISC
Copyright (c) 2018, Shellyl_N and Authors.