All Projects → steventhanna → Proton

steventhanna / Proton

Licence: gpl-3.0
A stand-alone application to quickly preview and edit Markdown files using Electron.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Proton

Laravel Smartmd
🎯 A simple markdown editor compatible most markdown parse,You can choose any parse methods on server or client,like Mathematical formula、flowchart、upload image...
Stars: ✭ 76 (-45.71%)
Mutual labels:  markdown, markdown-parser, markdown-editor
Mditor
📝 [ M ] arkdown + E [ ditor ] = Mditor
Stars: ✭ 523 (+273.57%)
Mutual labels:  markdown, markdown-parser, markdown-editor
Abricotine
Markdown editor with inline preview
Stars: ✭ 2,308 (+1548.57%)
Mutual labels:  markdown, text-editor, markdown-editor
Kodexplorer
A web based file manager,web IDE / browser based code editor
Stars: ✭ 5,490 (+3821.43%)
Mutual labels:  markdown, text-editor, markdown-editor
Marcdown
👻 Lightweight realtime markdown viewer and editor - Simple, clean and beautiful https://liyasthomas.github.io/marcdown
Stars: ✭ 345 (+146.43%)
Mutual labels:  markdown, markdown-parser, markdown-editor
Markitdown
📱 A React app to preview and edit Markdown✍. You can also export it as HTML.
Stars: ✭ 26 (-81.43%)
Mutual labels:  markdown, markdown-parser, markdown-editor
Remarkable
Remarkable - The Markdown Editor for Linux http://remarkableapp.github.io
Stars: ✭ 1,763 (+1159.29%)
Mutual labels:  markdown, markdown-editor
Bookeditor
Stars: ✭ 86 (-38.57%)
Mutual labels:  markdown, markdown-editor
Mdtool
A tool which can process markdown to HTML
Stars: ✭ 136 (-2.86%)
Mutual labels:  markdown, markdown-parser
Retext
ReText: Simple but powerful editor for Markdown and reStructuredText
Stars: ✭ 1,500 (+971.43%)
Mutual labels:  markdown, markdown-editor
React Mde
📝 React Markdown Editor
Stars: ✭ 1,196 (+754.29%)
Mutual labels:  markdown, markdown-editor
Foam
A personal knowledge management and sharing system for VSCode
Stars: ✭ 10,993 (+7752.14%)
Mutual labels:  markdown, markdown-editor
Md
✍ 一款高度简洁的微信 Markdown 编辑器:支持 Markdown 所有基础语法、色盘取色、一键复制并粘贴到公众号后台、多图上传、一键下载文档、自定义 CSS 样式、一键重置等特性
Stars: ✭ 2,242 (+1501.43%)
Mutual labels:  markdown, markdown-editor
Hypermd
A WYSIWYG Markdown Editor for browsers. Break the Wall between writing and previewing.
Stars: ✭ 1,258 (+798.57%)
Mutual labels:  markdown, markdown-editor
Markdownmonster
An extensible Markdown Editor, Viewer and Weblog Publisher for Windows
Stars: ✭ 1,203 (+759.29%)
Mutual labels:  markdown, markdown-editor
Markdown Electron
⚛️Electron version of Markdown app
Stars: ✭ 99 (-29.29%)
Mutual labels:  markdown, markdown-editor
Markor
Text editor - Notes & ToDo (for Android) - Markdown, todo.txt, plaintext, math, ..
Stars: ✭ 1,394 (+895.71%)
Mutual labels:  markdown, markdown-editor
Mook
Markdown editor based on Electron and React
Stars: ✭ 117 (-16.43%)
Mutual labels:  markdown, markdown-editor
Markvis
make visualization in markdown. 📊📈
Stars: ✭ 1,509 (+977.86%)
Mutual labels:  markdown, markdown-editor
Flexmark Java
CommonMark/Markdown Java parser with source level AST. CommonMark 0.28, emulation of: pegdown, kramdown, markdown.pl, MultiMarkdown. With HTML to MD, MD to PDF, MD to DOCX conversion modules.
Stars: ✭ 1,673 (+1095%)
Mutual labels:  markdown, markdown-parser

Stories in Ready

Proton

A stand-alone application to quickly preview and edit Markdown files using Electron.

Proton Screenshot

Purpose

As a college student, I needed a way to quickly take rich notes in class. I have long been a proponent of the Markdown Language, so I decided to download MacDown for easy rendering and viewing. However, upon an OS update on my local machine, the Markdown rendering broke. Thus, I decided to build my own open-sourced version that is supported on Windows, OSX, and Linux machines using the Electron Framework.

Installing

Mac OS X

  1. Download the Zip File.
  2. Unzip the file.
  3. Move Proton.app to your Applications Folder.

Windows

  1. Download the Zip File.
  2. Unzip the file.
  3. Move the Proton.exe to your desired destination for installed applications.

Linux

Ubuntu (From PPA)

Coming soon

Ubuntu (.deb)

  1. Download the .deb file (amd64 only -- more support coming soon)
    $: cd ~/Downloads
    $: wget https://github.com/steventhanna/proton/releases/download/v0.1.0/proton_0.1.0_amd64.deb
    
  2. Install Proton from the .deb file.
    $: sudo dpkg -i proton_0.1.0_amd64.deb
    

Linux (Binary)

  1. Download and Install the Binary. (x64) (ia32)
    $: cd ~/Download
    
    # For x64
    $: wget https://github.com/steventhanna/proton/releases/download/v0.1.0/Proton-Linux_0.1.0_x64.tar.gz
    $: tar -xzf Proton-Linux_0.1.0_x64.tar.gz
    $: mkdir /opt/Proton
    $: cd /opt/Proton
    $: mv ~/Downloads/Proton-Linux_0.1.0_x64/* .
    
    # For ia32
    $: wget https://github.com/steventhanna/proton/releases/download/v0.1.0/Proton-Linux_0.1.0_ia32.tar.g
    $: tar -xzf Proton-Linux_0.1.0_ia32.tar.gz
    $: mkdir /opt/Proton
    $: cd /opt/Proton
    $: mv ~/Downloads/Proton-Linux_0.1.0_ia32/* .
    

Building

  1. Clone repo: git clone [email protected]:steventhanna/proton.git
  2. Change to repo: cd PATH$TO$REPO
  3. Install dependencies: npm install

Usage

  1. Start electron: electron .

Tests

Coming Soon

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout my-new-feature
  3. Commit your changes
  4. Submit a pull request

License

Proton is licensed under the GNU General Public License. Read the license here.

Built On

CoverAll Package Script: electron-packager proton Proton --platform=linux --arch=all --overwrite && electron-packager proton Proton --platform=win32 --arch=all --icon=proton.ico --overwrite && electron-packager proton Proton --platform=darwin --arch=all --icon=proton.icns --overwrite

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].