All Projects → mikidown → Mikidown

mikidown / Mikidown

Licence: mit
A note taking application, featuring markdown syntax.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mikidown

Crossnote
📝 An interesting markdown note taking application
Stars: ✭ 533 (+407.62%)
Mutual labels:  notes, markdown
Codimd
CodiMD - Realtime collaborative markdown notes on all platforms.
Stars: ✭ 7,592 (+7130.48%)
Mutual labels:  notes, markdown
Notes Up
Markdown notes editor & manager
Stars: ✭ 535 (+409.52%)
Mutual labels:  notes, markdown
Lifelong Learning
✅ ✅ ✅ A massive repo filled with notes on everything from coding to philosophy to psychology to marketing to product
Stars: ✭ 297 (+182.86%)
Mutual labels:  notes, markdown
Gitjournal
Mobile first Note Taking integrated with Git
Stars: ✭ 1,138 (+983.81%)
Mutual labels:  notes, markdown
Nb
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
Stars: ✭ 3,846 (+3562.86%)
Mutual labels:  notes, markdown
Notes
Note-taking application, write down your thoughts.
Stars: ✭ 612 (+482.86%)
Mutual labels:  notes, qt5
Brainstorm
Project-brainstorm is a multi-purpose note-taking application which excells at free writing, prototyping, task lists and cheat sheets
Stars: ✭ 213 (+102.86%)
Mutual labels:  notes, markdown
Notes Cli
A simple CLI app to take notes daily on markdown file
Stars: ✭ 58 (-44.76%)
Mutual labels:  notes, markdown
Notes
📝 Migrated to(迁移至) https://github.com/Kuangcp/Note 当前仓库已经废弃, 对应的博客网站:
Stars: ✭ 33 (-68.57%)
Mutual labels:  notes, markdown
Notehub
A pastebin for markdown pages.
Stars: ✭ 262 (+149.52%)
Mutual labels:  notes, markdown
Markdownxiaoshujiang
markdownxiaoshujiang
Stars: ✭ 1,188 (+1031.43%)
Mutual labels:  notes, markdown
zNotes
zNotes is a lightweight cross-platform application for notes management.
Stars: ✭ 17 (-83.81%)
Mutual labels:  notes, qt5
Notes
✎ Distraction-free notes and writing
Stars: ✭ 363 (+245.71%)
Mutual labels:  notes, markdown
Web
A free, open-source, and completely encrypted notes app. https://standardnotes.com
Stars: ✭ 3,061 (+2815.24%)
Mutual labels:  notes, markdown
Ml Note
📙慢慢整理所学的机器学习算法,并根据自己所理解的样子叙述出来。(注重数学推导)
Stars: ✭ 537 (+411.43%)
Mutual labels:  notes, markdown
Mininote
📔 A simple Markdown note-taking editor
Stars: ✭ 171 (+62.86%)
Mutual labels:  notes, markdown
Boostnote.next
Boost Note is a powerful, lightspeed collaborative workspace for developer teams. Forum (New!): https://github.com/BoostIO/BoostNote-App/discussions
Stars: ✭ 2,682 (+2454.29%)
Mutual labels:  notes, markdown
Notes
📝 Simple delightful note taking, with more unix and less lock-in.
Stars: ✭ 939 (+794.29%)
Mutual labels:  notes, markdown
Enex Dump
Dump the content of .enex files, preserving attachements, some metadata and optionally converting notes to Markdown.
Stars: ✭ 73 (-30.48%)
Mutual labels:  notes, markdown

Mikidown

Master build status: master Build Status Develop build status: develop Build Status

Maintenance status: Not Maintained

Mikidown is a note taking application with markdown.

Mikidown was inspired by Zim and based on ReText. The logo is derived from markdown-mark.

Install mikidown with

python3-pip install mikidown

Run mikidown without installing

git clone https://github.com/shadowkyogre/mikidown.git
cd mikidown
./mikidown.py

Features

  • Edit markdown with live preview
  • Switch between Edit/View/LiveEdit mode
  • All notes in one place, with multiple notebooks support
  • Page cross-link
  • Import from plain text files, export to HTML, PDF
  • Customise your note style (by editing CSS file)
  • Spell check

Dependencies

  • Python.3+
  • PyQt.5+
  • python-markdown
  • python-whoosh
  • python-html2text ( Optional for HTML to markdown conversion, otherwise, formatted text is pasted as HTML )
  • python-asciimathml ( Optional for asciimathml support )
  • python-pyenchant ( Optional for spell checking )
  • slickpicker ( Optional for better color picking for mikidown highlighting colors )

Beautiful notes powered by markdown

In case you are unfamiliar with markdown, you can use this file (Help->README) as a simple reference to basic markdown syntax. However, Its suggested to look at the complete Markdown Syntax.

Markdown extension

All python-markdown extensions are supported. To enable/disable extension, edit the notebook.conf file in your notebook folder.

# notebook_folder/notebook.conf
extensions=nl2br, strkundr, codehilite, fenced_code, headerid, headerlink, footnotes

Mikidown Specific Syntax

  1. page cross link

    • [text](/parentNode/childNode/pageName)
    • [text](/parentNode/childNode/pageName#anchor)
  2. absolute and relative image path

    • ![text](file:///home/user/pic.png)
    • ![text](pic.png) # path relative to notebook folder
    • Ctrl + I or Edit -> Insert Image will bring up an insert image dialog.
  3. ins/del/bold/italics

    • ~~delete~~ will yield delete
    • __insert__ will yield insert
    • **strong** will yield strong
    • //emphasis// will yield emphasis

Contributors

ShadowKyogre and more

Fork and help are much appreciated.

Want to help? Further details are in the CONTRIBUTING.md file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].