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
+21
View File
@@ -0,0 +1,21 @@
{
"schemaVersion": "0.1.0",
"name": "📚 Book (LLM Wiki)",
"behavior": "create",
"noteNameFormat": "{{date}}_{{title}}",
"path": "raw/books",
"noteContentFormat": "---\ntype: book\ntitle: \"{{title}}\"\nurl: \"{{url}}\"\nauthor: \"{{author}}\"\npublisher: \"\"\nyear: \"\"\nisbn: \"\"\nclipped: {{date}}\ntags:\n - raw\n - book\ndescription: \"{{description}}\"\nwiki_status: not-compiled\n---\n\n## 왜 읽는가\n<!-- 이 책을 읽는 이유, 기대하는 것 직접 작성 -->\n\n## 핵심 주장\n<!-- 책의 핵심 thesis 한두 줄 -->\n\n## 하이라이트\n{{highlights}}\n\n## 내용\n{{content}}",
"properties": [
{ "name": "type", "value": "book", "type": "text" },
{ "name": "title", "value": "{{title}}", "type": "text" },
{ "name": "url", "value": "{{url}}", "type": "text" },
{ "name": "author", "value": "{{author}}", "type": "text" },
{ "name": "publisher", "value": "", "type": "text" },
{ "name": "year", "value": "", "type": "text" },
{ "name": "isbn", "value": "", "type": "text" },
{ "name": "clipped", "value": "{{date}}", "type": "date" },
{ "name": "tags", "value": "raw,book", "type": "multitext" },
{ "name": "description", "value": "{{description}}", "type": "text" },
{ "name": "wiki_status", "value": "not-compiled", "type": "text" }
]
}