joplin 1.2.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Makefile +1 -0
- data/bin/jp +912 -71
- data/lib/joplin/version.rb +1 -1
- data/readme.md +32 -2
- metadata +1 -1
data/lib/joplin/version.rb
CHANGED
data/readme.md
CHANGED
|
@@ -59,6 +59,7 @@ Commands:
|
|
|
59
59
|
jp cal [DATE] # Show calendar
|
|
60
60
|
jp cat TARGET... # Display note content
|
|
61
61
|
jp edit TARGET # Edit a note or tag stack
|
|
62
|
+
jp export PATH # Export notes as Markdown with front matter
|
|
62
63
|
jp flashback [DATE] # Show notes from this day in previous years
|
|
63
64
|
jp help [COMMAND] # Describe available commands or one specific command
|
|
64
65
|
jp info # Show JP and Joplin profile information
|
|
@@ -68,19 +69,48 @@ Commands:
|
|
|
68
69
|
jp ls [TARGET] # List notebooks, notes, or tags
|
|
69
70
|
jp mv SOURCE DESTINATION # Rename a notebook or tag
|
|
70
71
|
jp random # Display a random note
|
|
71
|
-
jp rm TARGET # Move a note to Trash or recursively remove a
|
|
72
|
+
jp rm TARGET # Move a note or notebook to Trash, or recursively remove a tag
|
|
72
73
|
jp search QUERY # Search notes for text
|
|
73
74
|
jp settings SUBCOMMAND # Manage settings
|
|
74
75
|
jp test # Run tests
|
|
75
|
-
jp trash SUBCOMMAND # Manage trashed notes
|
|
76
|
+
jp trash SUBCOMMAND # Manage trashed notes and notebooks
|
|
76
77
|
jp tree # Print a tree of all available commands
|
|
77
78
|
jp version # Show version
|
|
78
79
|
```
|
|
79
80
|
|
|
81
|
+
`jp export PATH` preserves the notebook hierarchy, writes note metadata as YAML
|
|
82
|
+
front matter, copies referenced resources, and rewrites resource links. Pass
|
|
83
|
+
`--no-resources` (`-N`) to export Markdown without copying resources.
|
|
84
|
+
|
|
85
|
+
On macOS, new notes and journal entries include the current coordinates when
|
|
86
|
+
`CoreLocationCLI` is installed and location access is allowed. Set
|
|
87
|
+
`CORE_LOCATION_CLI` to an executable path to use a non-default installation, or
|
|
88
|
+
to an empty string to disable location lookup.
|
|
89
|
+
|
|
90
|
+
Triggered reminders for incomplete to-dos are shown before normal command
|
|
91
|
+
output. Raw note output and shell completion do not include these warnings.
|
|
92
|
+
|
|
80
93
|
### joplin
|
|
81
94
|
|
|
82
95
|
Commands that interact with Joplin via the API.
|
|
83
96
|
|
|
97
|
+
```text
|
|
98
|
+
Commands:
|
|
99
|
+
joplin build # build a note from a note containing references
|
|
100
|
+
joplin clean # clean unused resources
|
|
101
|
+
joplin epub # build a note from a note (help build), write the note, and create an epub
|
|
102
|
+
joplin help [COMMAND] # Describe available commands or one specific command
|
|
103
|
+
joplin nb2n # concate all notes in a notebook to one note. Possible PDF export
|
|
104
|
+
joplin resource # get resource for note
|
|
105
|
+
joplin stats # statistics on joplin data
|
|
106
|
+
joplin tree # Print a tree of all available commands
|
|
107
|
+
joplin version # get version of program
|
|
108
|
+
joplin write # write a note
|
|
109
|
+
|
|
110
|
+
Options:
|
|
111
|
+
[--token=TOKEN]
|
|
112
|
+
```
|
|
113
|
+
|
|
84
114
|
### joplin nb2n --token <yourtoken> 'notebook name'
|
|
85
115
|
|
|
86
116
|
Will take a notebook and concatenate all notes into one for easy export to PDF
|