All Projects → akuma → Evermark

akuma / Evermark

Licence: mit
🐘 A command line tool for syncing markdown notes to Evernote

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Evermark

Markdownxiaoshujiang
markdownxiaoshujiang
Stars: ✭ 1,188 (+1550%)
Mutual labels:  evernote, markdown
Evernote2md
Convert Evernote .enex files to Markdown
Stars: ✭ 193 (+168.06%)
Mutual labels:  evernote, markdown
Enex Dump
Dump the content of .enex files, preserving attachements, some metadata and optionally converting notes to Markdown.
Stars: ✭ 73 (+1.39%)
Mutual labels:  evernote, markdown
Web
A free, open-source, and completely encrypted notes app. https://standardnotes.com
Stars: ✭ 3,061 (+4151.39%)
Mutual labels:  evernote, 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 (+5241.67%)
Mutual labels:  command-line, markdown
Mdp
A command-line based markdown presentation tool.
Stars: ✭ 4,226 (+5769.44%)
Mutual labels:  command-line, markdown
Yarle
Yarle - The ultimate converter of Evernote notes to Markdown
Stars: ✭ 170 (+136.11%)
Mutual labels:  evernote, markdown
Mandown
man-page inspired Markdown viewer
Stars: ✭ 173 (+140.28%)
Mutual labels:  command-line, markdown
Go Termd
Package termd provides terminal markdown rendering, with code block syntax highlighting support.
Stars: ✭ 223 (+209.72%)
Mutual labels:  command-line, markdown
Lookatme
An interactive, terminal-based markdown presenter
Stars: ✭ 392 (+444.44%)
Mutual labels:  command-line, markdown
Taskell
Command-line Kanban board/task manager with support for Trello boards and GitHub projects
Stars: ✭ 1,175 (+1531.94%)
Mutual labels:  command-line, markdown
Godot Engine.file Editor
A Godot Engine addon that adds a File Editor for multiple file types editing. Create and Write plain text files, configuration files and csv files with custom visualizers and previews. Also supports file translations!
Stars: ✭ 70 (-2.78%)
Mutual labels:  markdown
Rat
Compose shell commands to build interactive terminal applications
Stars: ✭ 1,158 (+1508.33%)
Mutual labels:  command-line
Cloud Security Audit
A command line security audit tool for Amazon Web Services
Stars: ✭ 68 (-5.56%)
Mutual labels:  command-line
Pyinquirer
A Python module for common interactive command line user interfaces
Stars: ✭ 1,151 (+1498.61%)
Mutual labels:  command-line
Markdown Component Loader
📑 Turn Markdown into dynamic, stateless React components
Stars: ✭ 71 (-1.39%)
Mutual labels:  markdown
Swift
Airbnb's Swift Style Guide.
Stars: ✭ 1,165 (+1518.06%)
Mutual labels:  markdown
Gh Card
GitHub Repository Card for Any Web Site
Stars: ✭ 1,154 (+1502.78%)
Mutual labels:  markdown
Toc
🚩 TOC, zero configuration table of content generator for Markdown files, create table of contents from any Markdown file with ease.
Stars: ✭ 66 (-8.33%)
Mutual labels:  markdown
Cascadia
Go cascadia package command line CSS selector
Stars: ✭ 67 (-6.94%)
Mutual labels:  command-line

Evermark

NPM version Build Status Windows Build Status Coverage Status Dependency Status Dependency Status

A command line tool for syncing markdown notes to Evernote 🐘

English 中文

Some features:

  • [x] Supports publishing markdown notes to evernote
  • [x] Supports unpublishing markdown notes from evernote
  • [x] Supports adding notebook and tags
  • [x] Supports code highlight, tables and inserting images
  • [x] Supports todo-list and LaTeX expressions
  • [x] Supports flow charts, sequence diagrams and gant diagrams

Install

npm install -g evermark

Commands

Initialize Evermark Folder

Initialize Evermark folder, save settings to file evermark.json

evermark init <destination>
  1. First, follow the prompt to select whether you are using Evernote International or 印象笔记.
  2. Then login with your account from automatically opened page to generate developerToken and copy it.
  3. Finally, according to the prompt paste the copied developerToken.

The urls to generate developerToken:

View or Modify the Configuration

evermark config [name] [value]

Add Note

Create a empty markdown note in the notes directory of the Evermark folder.

evermark new <title>

Publish Notes

Publish markdown notes to Evernote or update the published notes.

evermark publish <file_or_directory>

Unpublish Notes

Delete the Evernote note which corresponding the markdown note, but the markdown note file will not be deleted.

evermark unpublish <file_or_directory>

View Help

evermark help [command]

The Supported Markdown Syntax

Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

~~This text will be crossed~~

_You **can** combine ~~them~~_

Sups & Subs

19^th^
H~2~O

Emoji

😄 ❤️ ☀️ 🍉 🇨🇳

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:

> We're living the future so
> the present is our past.

Lists

Unordered

- Item 1
- Item 2
  - Item 2a
  - Item 2b

Ordered

1. Item 1
1. Item 2
1. Item 3
   - Item 3a
   - Item 3b

Task Lists

- [x] Write blog post with ❤️
- [x] Create sample **gist**
- [ ] Take screenshots for blog post

Tables

First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column

Images

![Image of Test](img/test.png "Image of Test")
![GitHub Logo](https://assets-cdn.github.com/images/modules/logos_page/Octocat.png "GitHub Logo")

Inline Code

This is an inline code: `var example = true`

Block Code

```js
console.log('Hello world!')
```

Diagrams

Evermark supports flow charts, sequence diagrams and gant diagrams by using mermaid.
Please see the mermaid docs for more details.

Flow Diagrams

```
graph LR
    A[Square Rect] -- Link text --> B((Circle))
    A --> C(Round Rect)
    B --> D{Rhombus}
    C --> D
```
Flow Diagram

Sequence Diagrams

```
sequenceDiagram
    participant Alice
    participant Bob
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts<br/>prevail...
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!
```
Sequence Diagram

Gantt Diagrams

```
gantt
    title A Gantt Diagram

    section Section
    A task           :a1, 2014-01-01, 30d
    Another task     :after a1  , 20d

    section Another
    Task in sec      :2014-01-12, 12d
    anther task      : 24d
```
Gantt Diagram

Math Equations

Evermark supports LaTeX expression for math.

Inline Equations

When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are
$x = {-b \pm \sqrt {b^2-4ac} \over 2a}$.
Inline Math Equations

Block Equations

$$
\displaystyle \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\cdots} } } }
$$

$$
\displaystyle \left( \sum_{k=1}^n a_k b_k \right)^2 \leq
\left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
$$
Block Math Equations

Raw HTML

<div style="color: red;">This is a <strong>html</strong> code.</div>

Other Syntax

Notebooks & Tags

Evermark add @(Notebook)[tag1|tag2|tag3] syntax to select notebook and set tags for the note.

Title

Evermark would use the first heading encountered as the note title.

贡献和讨论

欢迎提交 issue 来优化完善这个项目。

如果此项目对您有很大的帮助, 请酌情考虑打赏作者。

微信赞赏 支付宝赞赏

License

MIT

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