Joplin Tips
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">
</div>
Local Image without style

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%';