Joplin Tips

Database | Images |

forum | Joplin site | on github |

CSS kinda works | markdown flavor supported by Joplin |

Database

database.sqlite in JoplinProfile folder - tables: folders, item_changes, master_keys, note_resources, note_tags, notes, resources, settings, sqlite_sequence, sync_items, table_fields, tags, version

Images

version 1.0.109: allows image resources in IMG html tags. For example, this is now possible:
<img src=":/a92ac34387ff467a8c839d201dcd39aa" width="50"/>

External image
<img style="width:200px; border: dashed lime 3px; padding: 1em; background: yellow" src="https://www.telegraph.co.uk/content/dam/men/2016/11/11/Full_moon_trans_NvBQzQNjv4BqL-OTeE_wbKrGu7IN_5THb1Vse9JsN00kzbUr3IXHaGo.jpg?imwidth=1400">

Local Image with 'div' and 'style'
<div style="width:200px; border: dashed lime 3px; padding: 1em; background: yellow">
Fiat-logo-2006-1920x1080.png
</div>

Local Image without style
![Fiat-logo-2006-1920x1080.png](:/87828bdc5576417eb08e70f0ff8efcf8)


select * from resources;
example output: e5edcb5f0dcc48a49498cb00d2362a3c
As e5edc is an image (a resource)

If you want to check if this resource is used in a note, you could use this query:
select * from notes where body like '%e5edcb5f0dcc48a49498cb00d2362a3c%';

return to top

Edit Report
Pub: 29 Sep 2018 15:36 UTC
Edit: 14 Dec 2018 00:19 UTC
Views: 167