mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Updated Readme
This commit is contained in:
parent
b0c79d4b3b
commit
d22451e295
2 changed files with 15 additions and 7 deletions
|
@ -1,14 +1,17 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
### 1.3.0
|
||||||
|
|
||||||
|
* [New] Export to multiple files
|
||||||
|
* [New] Feature to export to given output file
|
||||||
|
|
||||||
#### 1.1.2
|
#### 1.1.2
|
||||||
|
|
||||||
* [Fixed] Timezone support for DayOne
|
* [Fixed] Timezone support for DayOne
|
||||||
|
|
||||||
#### 1.1.1
|
#### 1.1.1
|
||||||
|
|
||||||
* [New] Export to multiple files
|
|
||||||
* [New] Feature to export to given output file
|
|
||||||
* [Fixed] Unicode and Python3 issues resolved.
|
* [Fixed] Unicode and Python3 issues resolved.
|
||||||
|
|
||||||
### 1.1.0
|
### 1.1.0
|
||||||
|
|
15
README.md
15
README.md
|
@ -142,15 +142,20 @@ Prettyprints your entire journal.
|
||||||
|
|
||||||
### Export to files
|
### Export to files
|
||||||
|
|
||||||
jrnl --export md -o journal
|
You can specify the output file of your exported journal using the `-o` argument:
|
||||||
|
|
||||||
The above command will generate a file named `journal.md`. The extension will be generated on the type of export option. This way a json export will generate a `.json` file and a plain text export will generate a `.txt` file.
|
jrnl --export md -o journal.md
|
||||||
|
|
||||||
In case you wish to export to multiple files, you can use a glob-able filename.
|
The above command will generate a file named `journal.md`. If the `-o` argument is a directory, jrnl will export each entry into an individual file:
|
||||||
|
|
||||||
jrnl --export markdown -o %C-%m-%d_slug
|
jrnl --export json -o my_entries/
|
||||||
|
|
||||||
It also works with `json` and `text` export types.
|
The contents of `my_entries/` will then look like this:
|
||||||
|
|
||||||
|
my_entries/
|
||||||
|
|- 2013_06_03_a-beautiful-day.json
|
||||||
|
|- 2013_06_07_dinner-with-gabriel.json
|
||||||
|
|- ...
|
||||||
|
|
||||||
Encryption
|
Encryption
|
||||||
----------
|
----------
|
||||||
|
|
Loading…
Add table
Reference in a new issue