add template

This commit is contained in:
김경종
2026-04-17 10:35:09 +09:00
parent 5c308e14b2
commit e8f6208df1
41 changed files with 1133 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"schemaVersion": "0.1.0",
"name": "📄 Article (LLM Wiki)",
"behavior": "create",
"noteNameFormat": "{{date}}_{{title}}",
"path": "raw/articles",
"noteContentFormat": "---\ntype: article\ntitle: \"{{title}}\"\nurl: \"{{url}}\"\nauthor: \"{{author}}\"\npublished: \"{{published}}\"\nclipped: {{date}}\ntags:\n - raw\n - article\ndomain: \"{{domain}}\"\ndescription: \"{{description}}\"\nwiki_status: not-compiled\n---\n\n## 핵심 요약\n<!-- 클리핑 후 핵심 내용 한두 줄 직접 작성 -->\n\n## 하이라이트\n{{highlights}}\n\n## 본문\n{{content}}",
"properties": [
{ "name": "type", "value": "article", "type": "text" },
{ "name": "title", "value": "{{title}}", "type": "text" },
{ "name": "url", "value": "{{url}}", "type": "text" },
{ "name": "author", "value": "{{author}}", "type": "text" },
{ "name": "published", "value": "{{published}}", "type": "text" },
{ "name": "clipped", "value": "{{date}}", "type": "date" },
{ "name": "tags", "value": "raw,article", "type": "multitext" },
{ "name": "domain", "value": "{{domain}}", "type": "text" },
{ "name": "description", "value": "{{description}}", "type": "text" },
{ "name": "wiki_status", "value": "not-compiled", "type": "text" }
]
}