58 lines
1.3 KiB
Markdown
58 lines
1.3 KiB
Markdown
<%*
|
||
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"
|
||
```
|