parent
d4e7d7507e
commit
bae6240439
File diff suppressed because one or more lines are too long
@ -0,0 +1,22 @@
|
||||
{
|
||||
"scanned": true,
|
||||
"reminders": {},
|
||||
"debug": false,
|
||||
"settings": {
|
||||
"reminderTime": "09:00",
|
||||
"laters": "In 30 minutes\nIn 1 hour\nIn 3 hours\nTomorrow\nNext week",
|
||||
"useSystemNotification": false,
|
||||
"autoCompleteTrigger": "(@",
|
||||
"primaryReminderFormat": "ReminderPluginReminderFormat",
|
||||
"enableReminderPluginReminderFormat": true,
|
||||
"dateFormat": "YYYY-MM-DD",
|
||||
"dateTimeFormat": "YYYY-MM-DD HH:mm",
|
||||
"strictDateFormat": false,
|
||||
"linkDatesToDailyNotes": false,
|
||||
"enableTasksPluginReminderFormat": false,
|
||||
"useCustomEmojiForTasksPlugin": false,
|
||||
"enableKanbanPluginReminderFormat": false,
|
||||
"editDetectionSec": 10,
|
||||
"reminderCheckIntervalSec": 5
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-reminder-plugin",
|
||||
"name": "Reminder",
|
||||
"version": "1.1.3",
|
||||
"minAppVersion": "0.12.12",
|
||||
"description": "Reminder plugin for Obsidian. This plugin adds feature to manage TODOs with reminder.",
|
||||
"author": "uphy",
|
||||
"authorUrl": "https://obsidian.md/about",
|
||||
"isDesktopOnly": false
|
||||
}
|
@ -0,0 +1 @@
|
||||
/* styles.css */
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
||||
class templaterFunc {
|
||||
createNewFile(tp, templatelist) {
|
||||
const fileName = await tp.system.prompt("File name")
|
||||
const templateName = await tp.system.suggester(templatelist, templatelist)
|
||||
return tp.file.create_new(tp.file.find_tfile("Template ") + templateName, fileName, tp.file.folder())
|
||||
const fileName = await tp.system.prompt("File name");
|
||||
const templateName = await tp.system.suggester(templatelist, templatelist);
|
||||
return tp.file.create_new(tp.file.find_tfile("Template " + templateName), fileName, tp.file.folder())
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
---
|
||||
|
||||
Characters:
|
||||
-
|
||||
Places:
|
||||
-
|
||||
Notes:
|
||||
-
|
||||
|
||||
---
|
||||
|
||||
%%
|
||||
|
||||
So this is going to be a bit that does not count towards word count.
|
||||
But is not strictly frontmatter
|
||||
|
||||
%%
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
|
||||
# <% tp.file.title %>
|
@ -0,0 +1,90 @@
|
||||
---
|
||||
|
||||
Tag: ["Hotel", "Starck"]
|
||||
Date: 2021-12-18
|
||||
DocType: "Place"
|
||||
Hierarchy: "NonRoot"
|
||||
TimeStamp:
|
||||
location: [48.8614292,2.2750172]
|
||||
Place:
|
||||
Type: "Hotel"
|
||||
SubType: "Design"
|
||||
Style: "French"
|
||||
Location: "LaMuette"
|
||||
Country: "France"
|
||||
Status: "Prospect"
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[@@Paris|Paris]], [[@Hotels Paris|Hotels in Paris]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-BrachHotelSave
|
||||
|
||||
 
|
||||
|
||||
# Brach Hotel
|
||||
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
Note Description
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Contact
|
||||
|
||||
 
|
||||
|
||||
```ad-address
|
||||
~~~
|
||||
1-7 RUE JEAN RICHEPIN
|
||||
75016 PARIS
|
||||
FRANCE
|
||||
~~~
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
Phone:: <a href="tel:+33144301000">01 44 30 10 00</a>
|
||||
|
||||
Email:: [CONTACT@BRACHPARIS.COM](mailto:contact@brachparis.com)
|
||||
|
||||
Website:: [BRACH, Luxury design hotel 5 stars by Starck - Paris 16 - EVOK Hotels](https://brachparis.com/?lang=en)
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Notes
|
||||
|
||||
 
|
||||
|
||||
Loret ipsum
|
||||
|
||||
 
|
||||
 
|
Loading…
Reference in new issue