Sha256: 629e158e3fc158954d0b644b0365b11afc64f72cef17df695d506b2f448dbe12

Contents?: true

Size: 597 Bytes

Versions: 3

Compression:

Stored size: 597 Bytes

Contents

# Joplin


## usage

Creating a note
```ruby
Joplin::token = "your joplintoken here copied from the webclippper settings"

begin
  note = Joplin::Notes.new
  note.title = "a new note"
  note.body = "markdown content"
  note.save!
rescue
  puts "Joplin not running?"
end
```

updating a note
```ruby
  note = Joplin::Notes.new "6e3811c7a73148a" # note id can be found in the information of any note
  note.title = "a new note title"
  note.save!
end
```


## CLI

### joplin nb2n --token <yourtoken> 'notebook name'

Will take a notebook and concatenate all notes into one for easy export to PDF


Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
joplin-0.2.2 README.md
joplin-0.2.1 README.md
joplin-0.2.0 README.md