Related:
- Clipper - Medium Template
- Clipper - Reddit Template
- Clipper - Export and Import Templates
- Clipper - YouTube Timestamp Template
- Clipper - URL Only Template
- Clipper - X (Twitter) Template
- Clipper - YouTube Template
Clipper - Wikipedia Template
Need help with importing/exporting templates?
Here is a step-by-step guide: Clipper - Export and Import Templates
And here is a full tutorial for the Obsidian Web Clipper.
Download
Get all my Obsidian Web Clipper templates for free.
Use
For this template to work, you need to open a specific Wikipedia article.
Effect
This template
- creates a new note
- gets triggered when viewing a Reddit post
- pre-fixes the note title with the current date
- E.g.: "2024-11-16 Atrociraptor - Wikipedia"
- Adds properties and values taken from the post
- Adds the first comment to the note content
Code
{
"schemaVersion": "0.1.0",
"name": "Wikipedia",
"behavior": "create",
"noteContentFormat": "{{selectorHtml:#mw-content-text|remove_html:(\".navbox,.printfooter,.side-box\")|markdown}}",
"properties": [
{
"name": "url",
"value": "{{url}}",
"type": "text"
},
{
"name": "title",
"value": "{{title}}",
"type": "text"
},
{
"name": "tags",
"value": "clippings, wikipedia",
"type": "multitext"
},
{
"name": "published",
"value": "{{schema:@Article:datePublished|date:\\\"YYYY-MM-DDTHH:mm:ssZ\\\"}}",
"type": "date"
},
{
"name": "modified",
"value": "{{schema:@Article:dateModified|date:\\\"YYYY-MM-DDTHH:mm:ssZ\\\"}}",
"type": "text"
},
{
"name": "created",
"value": "{{date|date:\\\"YYYY-MM-DD\\\"}}",
"type": "date"
}
],
"triggers": [
"https://en.wikipedia.org"
],
"noteNameFormat": "{{date|date:\"YYYY-MM-DD\"}} {{title}}",
"path": "00 Inbox/Clippings"
}