vault backup: 2025-02-03 08:29:48
This commit is contained in:
57
Templates/Book Template.md
Normal file
57
Templates/Book Template.md
Normal file
@@ -0,0 +1,57 @@
|
||||
<%*
|
||||
let title = tp.file.title;
|
||||
let book_name = "";
|
||||
let author = "";
|
||||
if (title.startsWith("Untitled")) {
|
||||
book_name = await tp.system.prompt("Book Name");
|
||||
author = await tp.system.prompt("Author");
|
||||
await tp.file.rename(title);
|
||||
}
|
||||
title = book_name + " by " + author
|
||||
tp.file.move("5 Media/0 Books/" + title)
|
||||
tR += "---"
|
||||
%>
|
||||
title: <%* tR += title %>
|
||||
created_date: <% tp.file.creation_date('YYYY-MM-DD') %>
|
||||
updated_date: <% tp.file.creation_date('YYYY-MM-DD') %>
|
||||
aliases:
|
||||
tags:
|
||||
- book
|
||||
type: book
|
||||
book_name: <% book_name %>
|
||||
author: <% author %>
|
||||
status: not_started
|
||||
---
|
||||
# <%* tR += title %>
|
||||
- **🏷️Tags** : #<% tp.file.creation_date('MM-YYYY') %> #book
|
||||
---
|
||||
## Summary
|
||||
|
||||
> [!summary] Summary
|
||||
> 3 Sentences only!
|
||||
> - What are the main ideas?
|
||||
> - If I implemented one idea from this book right now, which one would it be?
|
||||
> - How would I describe the book to someone else?
|
||||
|
||||
---
|
||||
## Ideas and Thoughts
|
||||
|
||||
> [!info]+ Inspiring Questions
|
||||
> - Did you think about other concepts from other books?
|
||||
> - Do the concepts fit to your past, to your memories?
|
||||
> - Can you relive them and reflect them from a different angle?
|
||||
|
||||
|
||||
---
|
||||
## Clippings
|
||||
|
||||
> [!info] Import Clippings from Kindle
|
||||
> Annotate Clippings with thoughts and cross references
|
||||
|
||||
|
||||
|
||||
---
|
||||
```query
|
||||
<% book_name %> <% author %>
|
||||
-file: "<% title %>.md"
|
||||
```
|
||||
Reference in New Issue
Block a user