-
Notifications
You must be signed in to change notification settings - Fork 225
Description
IMPORTANT: If your issue is related to missing content on page, please review the Troubleshooting instructions and open your issue on the Defuddle repo.
https://help.obsidian.md/web-clipper/troubleshoot
Version (please complete the following information):
- OS: Windows]
- Browser: Edge
- Web Clipper version: 0.11.9
- Obsidian version: 1.9.12
Describe the bug
Parentheses are being added to the properties in my note, as an example:
"date-created": 2025-09-02
"date-modified":
"date-read":
summary:
"title-display":
rather than
date-created:
date-modified:
summary:
date-read:
title-display:
I'm not super tech savvy, but it appears the parentheses are is causing an interference with the Linter plugin. As best as I can tell, the parentheses are new, but I could very well be mistaken.
Expected behavior
What did you expect to happen?
URLs where the bug occurs
Any specific web pages where the bug can be replicated.
To reproduce
Steps to reproduce the behavior:
- Go to '...'
- Click on '....'
- Scroll down to '....'
- See error
Your template file
If you are using a custom template (i.e. not the Default template). Go to Web Clipper settings and click More → Copy as JSON. Paste the JSON code below.
{
"schemaVersion": "0.1.0",
"name": "Article to read",
"behavior": "create",
"noteContentFormat": "# Metadata\nAuthor(s): {{author}}\n[Article link]({{url}})\n[Internet Archive](https://web.archive.org/web/{{url}})\n[Archive.is link](https://archive.is/{{url}})\nWord count: {{words}}\n\n```dataviewjs\ndv.view(\"4. Obsidian Technical Files/Dataview js queries/highlights\")\n```\n```dataviewjs\ndv.view(\"4. Obsidian Technical Files/Dataview js queries/footnotes-comments\")\n```\n# Article Text \n\n{{content}}\n",
"properties": [
{
"name": "date-created",
"value": "{{date}}",
"type": "date"
},
{
"name": "date-modified",
"value": "",
"type": "date"
},
{
"name": "date-read",
"value": "",
"type": "date"
},
{
"name": "summary",
"value": "",
"type": "text"
},
{
"name": "title-display",
"value": "{{title}}",
"type": "text"
},
{
"name": "site",
"value": "{{site}}",
"type": "text"
},
{
"name": "source",
"value": "{{url}}",
"type": "text"
},
{
"name": "author",
"value": "{{author}}",
"type": "multitext"
},
{
"name": "date-published",
"value": "{{published}}",
"type": "date"
},
{
"name": "description",
"value": "{{description}}",
"type": "text"
},
{
"name": "tags",
"value": "clippings, clippings-article-to-read",
"type": "multitext"
},
{
"name": "article-subjects",
"value": "",
"type": "multitext"
},
{
"name": "cssclasses",
"value": "tufte-sidenotes, cornell-left, cornell-border",
"type": "multitext"
},
{
"name": "related-article",
"value": "",
"type": "multitext"
},
{
"name": "disabled-rules",
"value": "yaml-title",
"type": "text"
}
],
"triggers": [],
"noteNameFormat": "Clipping - {{date|date:\"YYYY-MM-DD\"}} - {{title}}",
"path": "Clippings"
}