You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 25, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ For more information, see:
121
121
$ geeknote settings
122
122
Geeknote
123
123
******************************
124
-
Version: 2.0.12
124
+
Version: 2.0.13
125
125
App dir: /Users/username/.geeknote
126
126
Error log: /Users/username/.geeknote/error.log
127
127
Current editor: vim
@@ -165,6 +165,29 @@ $ geeknote settings --editor
165
165
Current editor is: vim
166
166
```
167
167
168
+
##### Enabling Markdown2 Extras
169
+
170
+
You can enable [Markdown2 Extras](https://github.com/trentm/python-markdown2/wiki/Extras) you want to use while editing notes. To check which settings are currently enabled call:
171
+
172
+
```sh
173
+
geeknote settings --extras
174
+
```
175
+
To change the Markdown2 Extras call:
176
+
177
+
```sh
178
+
geeknote settings --extras "tables, footnotes"
179
+
```
180
+
###### Example
181
+
182
+
```sh
183
+
$ geeknote settings --extras
184
+
current markdown2 extras is : ['None']
185
+
$ geeknote settings --extras "tables, footnotes"
186
+
Changes saved.
187
+
$ geeknote settings --extras
188
+
current markdown2 extras is : ['tables', 'footnotes']
189
+
```
190
+
168
191
## Working with Notes
169
192
### Notes: Creating notes
170
193
The main functionality that we need is creating notes in Evernote.
| ‑‑reminder | date | Set reminder date and time in either 'yyyy-mm-dd' or 'yyyy-mm-dd HH:MM' format. Alternatively use TOMORROW and WEEK for 24 hours and a week ahead respectively, NONE for a reminder without a time. Use DONE to mark a reminder as completed. |
196
219
| --urls | url | Set the URL for the note. |
197
220
| --raw || A flag signifying the content is in raw ENML format. |
221
+
| --rawmd || A flag signifying the content is in raw markdown format. |
198
222
199
223
##### Description
200
224
This command allows us to create a new note in Evernote. Geeknote has designed for using in console, so we have some restrictions like inability to use double quotes in **--content** option. But there is a method to avoid it - use stdin stream or file synchronization, we show it later in documentation.
@@ -335,6 +359,7 @@ geeknote edit --note <title or GUID of note to edit>
335
359
| ‑‑reminder | date | Set reminder date and time in either 'yyyy-mm-dd' or 'yyyy-mm-dd HH:MM' format. Alternatively use TOMORROW and WEEK for 24 hours and a week ahead respectively, NONE for a reminder without a time. Use DONE to mark a reminder as completed. Use DELETE to remove reminder from a note. |
336
360
| --urls | url | Set the URL for the note. |
337
361
| --raw || A flag signifying the content is in raw ENML format. |
362
+
| --rawmd || A flag signifying the content is in raw markdown format. |
0 commit comments