lisbon update

main
iOS 3 years ago
parent 14685ff501
commit bd7c3513ab

@ -35,7 +35,6 @@
"metaedit", "metaedit",
"obsidian-metatable", "obsidian-metatable",
"obsidian-minimal-settings", "obsidian-minimal-settings",
"multi-column-markdown",
"nldates-obsidian", "nldates-obsidian",
"note-refactor-obsidian", "note-refactor-obsidian",
"obsidian-memos", "obsidian-memos",
@ -59,5 +58,7 @@
"obsidian-read-it-later", "obsidian-read-it-later",
"obsidian-full-calendar", "obsidian-full-calendar",
"markdown-table-editor", "markdown-table-editor",
"obsidian-book-search-plugin" "obsidian-book-search-plugin",
"obsidian-columns",
"notion-like-tables"
] ]

@ -95,6 +95,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 0.2146842347194271, "scale": 0.2341704597667036,
"close": true "close": true
} }

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "mrj-text-expand", "id": "mrj-text-expand",
"name": "Text expand", "name": "Text expand",
"version": "0.9.2", "version": "0.10.5",
"description": "Search and paste/transclude links to located files.", "description": "Search and paste/transclude links to located files.",
"isDesktopOnly": false, "isDesktopOnly": false,
"author": "MrJackphil", "author": "MrJackphil",

File diff suppressed because one or more lines are too long

@ -1,10 +0,0 @@
{
"id": "multi-column-markdown",
"name": "Multi-Column Markdown",
"version": "0.4.3",
"minAppVersion": "0.13.23",
"description": "This plugin adds functionality to create markdown documents with multiple columns of content viewable within Obsidian's preview mode",
"author": "Cameron Robinson",
"authorUrl": "https://portfolio.ckrobinson.net",
"isDesktopOnly": false
}

@ -1,134 +0,0 @@
.twoEqualColumns_Left {
width: 49.75%;
margin-right: 0.25%;
}
.twoEqualColumns_Right {
width: 49.75%;
margin-left: 0.25%;
}
.twoColumnsHeavyLeft_Left {
width: 66.75%;
margin-right: 0.25%;
}
.twoColumnsHeavyLeft_Right {
width: 32.75%;
margin-left: 0.25%;
}
.twoColumnsHeavyRight_Left {
width: 32.75%;
margin-right: 0.25%;
}
.twoColumnsHeavyRight_Right {
width: 66.75%;
margin-left: 0.25%;
}
.threeEqualColumns_Left {
width: 32.75%;
margin-right: 0.25%;
}
.threeEqualColumns_Middle {
width: 32.5%;
margin-inline: 0.25%;
}
.threeEqualColumns_Right {
width: 33.75%;
margin-left: 0.25%;
}
.threColumnsHeavyLeft_Left {
width: 49.75%;
margin-right: 0.25%;
}
.threColumnsHeavyLeft_Middle {
width: 24.5%;
margin-inline: 0.25%;
}
.threColumnsHeavyLeft_Right {
width: 24.75%;
margin-left: 0.25%;
}
.threColumnsHeavyMiddle_Left {
width: 24.75%;
margin-right: 0.25%;
}
.threColumnsHeavyMiddle_Middle {
width: 49.5%;
margin-inline: 0.25%;
}
.threColumnsHeavyMiddle_Right {
width: 24.75%;
margin-left: 0.25%;
}
.threColumnsHeavyRight_Left {
width: 24.75%;
margin-right: 0.25%;
}
.threColumnsHeavyRight_Middle {
width: 24.5%;
margin-inline: 0.25%;
}
.threColumnsHeavyRight_Right {
width: 49.75%;
margin-left: 0.25%;
}
.columnContent {
padding-inline: 10px;
}
.columnBorder {
border: grey;
border-style: solid;
border-width: 0.5px;
}
.columnShadow {
box-shadow: 0 0.2rem 0.5rem var(--background-modifier-box-shadow);
}
.multiColumnErrorMessage {
margin-bottom: 10px;
color: #dc3545;
text-align: center;
}
.multiColumnContainer {
margin: 1.5625em 0;
}
.multiColumnParent {
padding: 0;
overflow: hidden;
color: var(--text-normal);
page-break-inside: avoid;
border-radius: 0.1rem;
display:flex;
flex-direction:row;
}
.multiColumnParentShadow {
box-shadow: 0 0.2rem 0.5rem var(--background-modifier-box-shadow);
}
.multiColumnRegionEndTag,
.multiColumnBreak,
.multiColumnSettings,
.multiColumnContent {
display: none;
}
.columnContent .multiColumnContent {
display: block;
}
.MultiColumn_OriginalElement + .MultiColumn_ClonedElement {
display: none;
}

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "notion-like-tables",
"name": "Notion-Like Tables",
"minAppVersion": "0.12.0",
"description": "Create markdown tables using an interface similar to that found in Notion.so.",
"author": "Trey Wallis",
"authorUrl": "https://github.com/trey-wallis",
"isDesktopOnly": false,
"version": "2.3.1"
}

@ -0,0 +1,241 @@
/* src/app/components/Menu/styles.css */
.NLT__menu {
position: relative;
}
.NLT__menu-container {
position: absolute;
border-radius: 4px;
font-weight: 400;
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
z-index: var(--layer-menu);
}
/* src/app/components/TagCell/styles.css */
.NLT__tag-cell {
display: flex;
align-items: center;
padding: 4px 8px;
overflow: clip;
}
.NLT__tag {
display: flex;
align-items: center;
border-radius: 8px;
padding: 2px 8px;
width: fit-content;
}
.NLT__tag-content {
width: 100%;
}
.NLT__tag--red {
background-color: #ff6961;
}
.NLT__tag--yellow {
background-color: #faffc7;
}
.NLT__tag--orange {
background-color: #ffdfd3;
}
.NLT__tag--pink {
background-color: #fec8d8;
}
.NLT__tag--gray {
background-color: #cfcfc4;
}
.NLT__tag--purple {
background-color: #e0bbe4;
}
/* src/app/components/TagMenuContent/styles.css */
.NLT__tag-menu-top {
display: flex;
background-color: rgba(0, 0, 0, 0.25);
padding: 4px 10px;
}
.NLT__tag-menu-bottom {
min-height: 100px;
padding: 4px 10px;
}
.NLT__tag-menu-text {
font-size: 0.85rem;
margin: 5px 0px;
width: 100%;
}
.NLT__tag-menu-input {
background-color: transparent !important;
border: 0 !important;
}
/* src/app/components/EditableTd/styles.css */
.NLT__td {
position: relative;
vertical-align: top;
height: 2rem;
cursor: default;
}
.NLT__td:focus {
border: 1px solid blue;
border-style: double;
}
.NLT__td--number {
text-align: right;
}
.NLT__td-content-container {
user-select: none;
}
/* src/app/components/Table/styles.css */
tbody > tr > .NLT__td:last-child {
border: 0 !important;
vertical-align: middle;
}
tfoot > tr > .NLT__td {
border: 0 !important;
}
/* src/app/components/IconText/styles.css */
.NLT__icon-text {
display: flex;
align-items: center;
}
.NLT__icon-text > p {
margin: 0;
}
/* src/app/components/DragMenu/styles.css */
.NLT__drag-menu {
width: 180px;
font-size: 0.9rem;
}
.NLT__drag-menu-item:focus {
outline: 1px solid blue;
}
/* src/app/components/HeaderMenu/styles.css */
.NLT__header-menu {
padding: 4px 10px;
cursor: default;
min-width: 100px;
}
.NLT__header-menu-item:focus {
outline: 1px solid blue;
}
.NLT__header-menu-header-container {
display: flex;
margin-bottom: 5px;
font-size: 0.95rem;
}
.NLT__header-menu-ul {
padding: 0;
margin: 0;
}
.NLT__header-menu-header {
font-weight: 700;
padding-left: 5px;
}
.NLT__header-menu-item {
font-size: 0.9rem;
display: flex;
align-items: center;
padding: 0;
margin: 0;
}
.NLT__header-menu-delete-button {
margin-top: 10px;
}
/* src/app/components/EditableTh/styles.css */
.NLT__th {
text-align: left;
}
.NLT__th:focus {
border: 1px solid blue;
border-style: double;
}
.NLT__th:last-child {
border: 0 !important;
}
.NLT__header-content-container {
display: flex;
}
.NLT__header-resize-container {
position: relative;
}
.NLT__header-content {
width: 100%;
padding-right: 10px;
margin-right: 5px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
user-select: none;
}
.NLT__header-resize {
position: absolute;
cursor: col-resize;
width: 10px;
margin-left: 7px;
min-height: 25px;
height: 100%;
}
/* src/app/app.css */
.NLT__error {
color: red;
}
.NLT__app {
margin-bottom: 20px;
overflow: auto;
resize: vertical;
}
.NLT__button {
padding: 4px;
}
.NLT__button:focus {
outline: 1px solid blue;
}
.NLT__button--sm {
width: 50px;
}
.NLT__button--reset {
padding: 0;
border: 0;
margin: 0;
}
.NLT__icon--selectable:hover {
border-radius: 4px;
box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.NLT__icon--md {
width: 1rem !important;
height: 1rem !important;
}
.NLT__selectable {
cursor: pointer;
}
.NLT__selectable:hover {
background-color: var(--interactive-hover);
}
.NLT__selected {
background-color: var(--interactive-normal);
}
.NLT__margin-right {
margin-right: 4px;
}
.NLT__margin-left {
margin-left: 4px;
}
.NLT__p {
margin: 0;
}
.NLT__input {
height: 100%;
width: 100%;
padding: 4px 10px !important;
border: 0 !important;
}
.NLT__input--number {
text-align: right;
}

@ -12,8 +12,8 @@
"checkpointList": [ "checkpointList": [
{ {
"path": "/", "path": "/",
"date": "2022-04-26", "date": "2022-05-01",
"size": 4125423 "size": 4133414
} }
], ],
"activityHistory": [ "activityHistory": [
@ -455,6 +455,22 @@
{ {
"date": "2022-04-26", "date": "2022-04-26",
"value": 6444 "value": 6444
},
{
"date": "2022-04-27",
"value": 2772
},
{
"date": "2022-04-29",
"value": 2831
},
{
"date": "2022-04-30",
"value": 1021
},
{
"date": "2022-05-01",
"value": 1373
} }
] ]
} }

@ -117,7 +117,7 @@
}, },
"syntaxHighlight": false, "syntaxHighlight": false,
"copyButton": true, "copyButton": true,
"version": "9.0.1", "version": "9.0.2",
"autoCollapse": false, "autoCollapse": false,
"defaultCollapseType": "open", "defaultCollapseType": "open",
"injectColor": true, "injectColor": true,

@ -488,7 +488,7 @@ ${c.getDoc().getSelection()}
> `)} > `)}
`)},i.open()}})})}async downloadIcon(c){this.iconManager.downloadIcon(c)}async removeIcon(c){this.iconManager.removeIcon(c)}async postprocessor(c,e,i,n){if(!!this.admonitions[c])try{let o=typeof n=="string"?n:n?.sourcePath??this.app.workspace.getActiveFile()?.path??"",{title:r,collapse:t,content:l,icon:f,color:s}=u4(c,e,this.admonitions[c]);this.data.autoCollapse&&!t?t=this.data.defaultCollapseType??"open":t&&t.trim()==="none"&&(t="");let h=this.admonitions[c],m=this.getAdmonitionElement(c,r,this.iconManager.iconDefinitions.find(({name:v})=>f===v)??h.icon,s??(h.injectColor??this.data.injectColor?h.color:null),t);this.renderAdmonitionContent(m,c,l,n,o,e),t&&t!="none"&&this.calloutManager.setCollapsible(m);let z=i.parentElement;return z&&z.addClass("admonition-parent",`admonition-${c}-parent`),i.replaceWith(m),m}catch(o){console.error(o);let r=createEl("pre");r.createEl("code",{attr:{style:"color: var(--text-error) !important"}}).createSpan({text:`There was an error rendering the admonition: `)},i.open()}})})}async downloadIcon(c){this.iconManager.downloadIcon(c)}async removeIcon(c){this.iconManager.removeIcon(c)}async postprocessor(c,e,i,n){if(!!this.admonitions[c])try{let o=typeof n=="string"?n:n?.sourcePath??this.app.workspace.getActiveFile()?.path??"",{title:r,collapse:t,content:l,icon:f,color:s}=u4(c,e,this.admonitions[c]);this.data.autoCollapse&&!t?t=this.data.defaultCollapseType??"open":t&&t.trim()==="none"&&(t="");let h=this.admonitions[c],m=this.getAdmonitionElement(c,r,this.iconManager.iconDefinitions.find(({name:v})=>f===v)??h.icon,s??(h.injectColor??this.data.injectColor?h.color:null),t);this.renderAdmonitionContent(m,c,l,n,o,e),t&&t!="none"&&this.calloutManager.setCollapsible(m);let z=i.parentElement;return z&&z.addClass("admonition-parent",`admonition-${c}-parent`),i.replaceWith(m),m}catch(o){console.error(o);let r=createEl("pre");r.createEl("code",{attr:{style:"color: var(--text-error) !important"}}).createSpan({text:`There was an error rendering the admonition:
`+e}),i.replaceWith(r)}}getAdmonitionElement(c,e,i,n,o){let r=createDiv({cls:`callout admonition admonition-${c} admonition-plugin ${e?.trim().length?"":"no-title"}`,attr:{style:`--admonition-color: ${n};`,"data-callout":c,"data-callout-fold":""}}),t=r.createDiv({cls:`callout-title admonition-title ${e?.trim().length?"":"no-title"}`});if(e&&e.trim().length){let l=t.createDiv("callout-icon admonition-title-icon");i&&i.name&&i.type&&l.appendChild(this.iconManager.getIconNode(i)??createDiv());let f=t.createDiv("callout-title-inner admonition-title-content");x.MarkdownRenderer.renderMarkdown(e,f,"",null),f.firstElementChild&&f.firstElementChild instanceof HTMLParagraphElement&&f.setChildrenInPlace(Array.from(f.firstElementChild.childNodes))}return o&&(r.addClass("is-collapsible"),o=="closed"&&r.addClass("is-collapsed")),this.data.dropShadow||r.addClass("no-drop"),r}renderAdmonitionContent(c,e,i,n,o,r){let t=new x.MarkdownRenderChild(c);if(t.containerEl=c,n&&typeof n!="string"&&n.addChild(t),i&&i?.trim().length){let l=this.getAdmonitionContentElement(e,c,i);if(/^`{3,}mermaid/m.test(i)){let s=!c.hasAttribute("open");c instanceof HTMLDetailsElement&&c.setAttribute("open","open"),setImmediate(()=>{x.MarkdownRenderer.renderMarkdown(i,l,o,t),c instanceof HTMLDetailsElement&&s&&c.removeAttribute("open")})}else x.MarkdownRenderer.renderMarkdown(i,l,o,t);(!i.length||l.textContent.trim()=="")&&this.data.hideEmpty&&c.addClass("no-content");let f=l.querySelectorAll(".task-list-item-checkbox");if(f?.length){let s=r.split(` `+e}),i.replaceWith(r)}}getAdmonitionElement(c,e,i,n,o){let r=createDiv({cls:`callout admonition admonition-${c} admonition-plugin ${e?.trim().length?"":"no-title"}`,attr:{style:`--callout-color: ${n};`,"data-callout":c,"data-callout-fold":""}}),t=r.createDiv({cls:`callout-title admonition-title ${e?.trim().length?"":"no-title"}`});if(e&&e.trim().length){let l=t.createDiv("callout-icon admonition-title-icon");i&&i.name&&i.type&&l.appendChild(this.iconManager.getIconNode(i)??createDiv());let f=t.createDiv("callout-title-inner admonition-title-content");x.MarkdownRenderer.renderMarkdown(e,f,"",null),f.firstElementChild&&f.firstElementChild instanceof HTMLParagraphElement&&f.setChildrenInPlace(Array.from(f.firstElementChild.childNodes))}return o&&(r.addClass("is-collapsible"),o=="closed"&&r.addClass("is-collapsed")),this.data.dropShadow||r.addClass("no-drop"),r}renderAdmonitionContent(c,e,i,n,o,r){let t=new x.MarkdownRenderChild(c);if(t.containerEl=c,n&&typeof n!="string"&&n.addChild(t),i&&i?.trim().length){let l=this.getAdmonitionContentElement(e,c,i);if(/^`{3,}mermaid/m.test(i)){let s=!c.hasAttribute("open");c instanceof HTMLDetailsElement&&c.setAttribute("open","open"),setImmediate(()=>{x.MarkdownRenderer.renderMarkdown(i,l,o,t),c instanceof HTMLDetailsElement&&s&&c.removeAttribute("open")})}else x.MarkdownRenderer.renderMarkdown(i,l,o,t);(!i.length||l.textContent.trim()=="")&&this.data.hideEmpty&&c.addClass("no-content");let f=l.querySelectorAll(".task-list-item-checkbox");if(f?.length){let s=r.split(`
`),h=0;f.forEach(m=>{let z=s.slice(h).findIndex(v=>/^[ \t>]*\- \[.\]/.test(v));z!=-1&&(m.dataset.line=`${z+h+1}`,h=z+h+1)})}}}getAdmonitionContentElement(c,e,i){let n=e.createDiv("callout-content admonition-content");if(this.admonitions[c].copy??this.data.copyButton){let o=n.createDiv("admonition-content-copy");(0,x.setIcon)(o,"copy"),o.addEventListener("click",()=>{navigator.clipboard.writeText(i.trim()).then(async()=>{new x.Notice("Admonition content copied to clipboard.")})})}return n}registerType(c){this.data.syntaxHighlight&&this.turnOnSyntaxHighlighting([c]),this.postprocessors.has(c)&&x.MarkdownPreviewRenderer.unregisterCodeBlockPostProcessor(`ad-${c}`),this.postprocessors.set(c,this.registerMarkdownCodeBlockProcessor(`ad-${c}`,(i,n,o)=>this.postprocessor(c,i,n,o)));let e=this.admonitions[c];e.command&&this.registerCommandsFor(e)}get admonitions(){return{...V4,...this.data.userAdmonitions}}async addAdmonition(c){this.data.userAdmonitions={...this.data.userAdmonitions,[c.type]:c},this.registerType(c.type),this.calloutManager.addAdmonition(c),await this.saveSettings()}registerCommandsFor(c){c.command=!0,this.addCommand({id:`insert-${c.type}-callout`,name:`Insert ${c.type} Callout`,editorCheckCallback:(e,i,n)=>{if(e)return c.command;if(c.command)try{let o=i.getDoc().getSelection();i.getDoc().replaceSelection(`> [!${c.type}] `),h=0;f.forEach(m=>{let z=s.slice(h).findIndex(v=>/^[ \t>]*\- \[.\]/.test(v));z!=-1&&(m.dataset.line=`${z+h+1}`,h=z+h+1)})}}}getAdmonitionContentElement(c,e,i){let n=e.createDiv("callout-content admonition-content");if(this.admonitions[c].copy??this.data.copyButton){let o=n.createDiv("admonition-content-copy");(0,x.setIcon)(o,"copy"),o.addEventListener("click",()=>{navigator.clipboard.writeText(i.trim()).then(async()=>{new x.Notice("Admonition content copied to clipboard.")})})}return n}registerType(c){this.data.syntaxHighlight&&this.turnOnSyntaxHighlighting([c]),this.postprocessors.has(c)&&x.MarkdownPreviewRenderer.unregisterCodeBlockPostProcessor(`ad-${c}`),this.postprocessors.set(c,this.registerMarkdownCodeBlockProcessor(`ad-${c}`,(i,n,o)=>this.postprocessor(c,i,n,o)));let e=this.admonitions[c];e.command&&this.registerCommandsFor(e)}get admonitions(){return{...V4,...this.data.userAdmonitions}}async addAdmonition(c){this.data.userAdmonitions={...this.data.userAdmonitions,[c.type]:c},this.registerType(c.type),this.calloutManager.addAdmonition(c),await this.saveSettings()}registerCommandsFor(c){c.command=!0,this.addCommand({id:`insert-${c.type}-callout`,name:`Insert ${c.type} Callout`,editorCheckCallback:(e,i,n)=>{if(e)return c.command;if(c.command)try{let o=i.getDoc().getSelection();i.getDoc().replaceSelection(`> [!${c.type}]
> ${o.split(` > ${o.split(`
`).join(` `).join(`

@ -1,7 +1,7 @@
{ {
"id": "obsidian-admonition", "id": "obsidian-admonition",
"name": "Admonition", "name": "Admonition",
"version": "9.0.1", "version": "9.0.2",
"minAppVersion": "0.14.0", "minAppVersion": "0.14.0",
"description": "Enhanced callouts for Obsidian.md", "description": "Enhanced callouts for Obsidian.md",
"author": "Jeremy Valentine", "author": "Jeremy Valentine",

@ -1955,7 +1955,8 @@ var FolderSuggest = class extends TextInputSuggest {
// src/settings/settings.ts // src/settings/settings.ts
var DEFAULT_SETTINGS = { var DEFAULT_SETTINGS = {
folder: "", folder: "",
frontmatter: "" frontmatter: "",
content: ""
}; };
var BookSearchSettingTab = class extends import_obsidian7.PluginSettingTab { var BookSearchSettingTab = class extends import_obsidian7.PluginSettingTab {
constructor(app, plugin) { constructor(app, plugin) {
@ -1973,7 +1974,7 @@ var BookSearchSettingTab = class extends import_obsidian7.PluginSettingTab {
this.plugin.saveSettings(); this.plugin.saveSettings();
}); });
}); });
new import_obsidian7.Setting(containerEl).setName("Insert frontmatter").setDesc("Text to insert into the YAML frontmatter").addTextArea((textArea) => { new import_obsidian7.Setting(containerEl).setName("Text to insert into frontmatter").setDesc("Text to insert into the YAML frontmatter").addTextArea((textArea) => {
const prevValue = this.plugin.settings.frontmatter; const prevValue = this.plugin.settings.frontmatter;
textArea.setValue(prevValue).onChange((value) => __async(this, null, function* () { textArea.setValue(prevValue).onChange((value) => __async(this, null, function* () {
const newValue = value; const newValue = value;
@ -1981,6 +1982,19 @@ var BookSearchSettingTab = class extends import_obsidian7.PluginSettingTab {
yield this.plugin.saveSettings(); yield this.plugin.saveSettings();
})); }));
}); });
const desc = document.createDocumentFragment();
desc.append("The following syntaxes are available: ", desc.createEl("br"), desc.createEl("code", { text: "{{title}}" }), ", ", desc.createEl("code", { text: "{{author}}" }), ", ", desc.createEl("code", { text: "{{category}}" }), ", ", desc.createEl("code", { text: "{{publisher}}" }), ", ", desc.createEl("code", { text: "{{publishDate}}" }), ", ", desc.createEl("code", { text: "{{totalPage}}" }), ", ", desc.createEl("code", { text: "{{coverUrl}}" }), ", ", desc.createEl("code", { text: "{{isbn10}}" }), ", ", desc.createEl("code", { text: "{{isbn13}}" }), desc.createEl("br"), "Check the ", desc.createEl("a", {
href: "https://github.com/anpigon/obsidian-book-search-plugin#text-to-insert-into-content",
text: "documentation"
}), " for more information.");
new import_obsidian7.Setting(containerEl).setName("Text to insert into content").setDesc(desc).addTextArea((textArea) => {
const prevValue = this.plugin.settings.content;
textArea.setValue(prevValue).onChange((value) => __async(this, null, function* () {
const newValue = value;
this.plugin.settings.content = newValue;
yield this.plugin.saveSettings();
}));
});
} }
}; };
@ -2036,6 +2050,10 @@ function makeFileName(book) {
function makeFrontMater(book, frontmatter) { function makeFrontMater(book, frontmatter) {
return new BookModel(book).toFrontMatter(frontmatter); return new BookModel(book).toFrontMatter(frontmatter);
} }
function makeContent(book, content) {
const entries = Object.entries(book);
return entries.reduce((text, [key, val = ""]) => text.replace(new RegExp(`{{${key}}}`, "ig"), val), `${content}`).replace(/{{.+}}/gi, "");
}
function camelToSnakeCase(str) { function camelToSnakeCase(str) {
return str.replace(/[A-Z]/g, (letter) => `_${letter == null ? void 0 : letter.toLowerCase()}`); return str.replace(/[A-Z]/g, (letter) => `_${letter == null ? void 0 : letter.toLowerCase()}`);
} }
@ -2069,14 +2087,15 @@ var BookSearchPlugin = class extends import_obsidian8.Plugin {
const book = yield this.openBookSearchModal(); const book = yield this.openBookSearchModal();
const frontMatterFromInserts = parseFrontMatter(this.settings.frontmatter); const frontMatterFromInserts = parseFrontMatter(this.settings.frontmatter);
const frontMatter = makeFrontMater(book, frontMatterFromInserts); const frontMatter = makeFrontMater(book, frontMatterFromInserts);
const content = makeContent(book, this.settings.content);
const fileContent = `--- const fileContent = `---
${frontMatter} ${frontMatter}
--- ---
`; ${content}`;
const fileName = makeFileName(book); const fileName = makeFileName(book);
const filePath = `${this.settings.folder.replace(/\/$/, "")}/${fileName}.md`; const filePath = `${this.settings.folder.replace(/\/$/, "")}/${fileName}.md`;
const targetFile = yield this.app.vault.create(filePath, fileContent); const targetFile = yield this.app.vault.create(filePath, fileContent);
const activeLeaf = this.app.workspace.activeLeaf; const activeLeaf = this.app.workspace.getLeaf();
if (!activeLeaf) { if (!activeLeaf) {
console.warn("No active leaf"); console.warn("No active leaf");
return; return;

@ -1,9 +1,9 @@
{ {
"id": "obsidian-book-search-plugin", "id": "obsidian-book-search-plugin",
"name": "Book Search", "name": "Book Search",
"version": "0.0.4", "version": "0.1.0",
"minAppVersion": "0.12.0", "minAppVersion": "0.12.0",
"description": "This is a sample plugin for Obsidian. This plugin demonstrates some of the capabilities of the Obsidian API.", "description": "Helps you find books and create notes.",
"author": "Obsidian", "author": "Obsidian",
"authorUrl": "https://obsidian.md", "authorUrl": "https://obsidian.md",
"isDesktopOnly": false "isDesktopOnly": false

@ -0,0 +1,126 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
var __export = (target, all) => {
__markAsModule(target);
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __reExport = (target, module2, desc) => {
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
for (let key of __getOwnPropNames(module2))
if (!__hasOwnProp.call(target, key) && key !== "default")
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
}
return target;
};
var __toModule = (module2) => {
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
};
var __async = (__this, __arguments, generator) => {
return new Promise((resolve, reject) => {
var fulfilled = (value) => {
try {
step(generator.next(value));
} catch (e) {
reject(e);
}
};
var rejected = (value) => {
try {
step(generator.throw(value));
} catch (e) {
reject(e);
}
};
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
step((generator = generator.apply(__this, __arguments)).next());
});
};
// main.ts
__export(exports, {
default: () => ObsidianColumns
});
var import_obsidian = __toModule(require("obsidian"));
var COLUMNNAME = "col";
var COLUMNMD = COLUMNNAME + "-md";
var TOKEN = "!!!";
var ObsidianColumns = class extends import_obsidian.Plugin {
onload() {
return __async(this, null, function* () {
this.registerMarkdownCodeBlockProcessor(COLUMNMD, (source, el, ctx) => {
const sourcePath = ctx.sourcePath;
let child = el.createDiv();
import_obsidian.MarkdownRenderer.renderMarkdown(source, child, sourcePath, null);
});
this.registerMarkdownCodeBlockProcessor(COLUMNNAME, (source, el, ctx) => {
const sourcePath = ctx.sourcePath;
let rows = source.split("\n");
let child = createDiv();
import_obsidian.MarkdownRenderer.renderMarkdown(source, child, sourcePath, null);
let parent = el.createEl("div", { cls: "columnParent" });
Array.from(child.children).forEach((c) => {
let cc = parent.createEl("div", { cls: "columnChild" });
cc.appendChild(c);
});
});
let processList = (element) => {
for (let child of Array.from(element.children)) {
if (child == null) {
continue;
}
if (child.nodeName != "UL" && child.nodeName != "OL") {
continue;
}
for (let listItem of Array.from(child.children)) {
if (listItem == null) {
continue;
}
if (!listItem.textContent.startsWith(TOKEN + COLUMNNAME)) {
processList(listItem);
continue;
}
child.removeChild(listItem);
let colParent = element.createEl("div", { cls: "columnParent" });
let itemList = listItem.querySelector("ul, ol");
if (itemList == null) {
continue;
}
for (let itemListItem of Array.from(itemList.children)) {
let childDiv = colParent.createEl("div", { cls: "columnChild" });
let span = parseFloat(itemListItem.textContent.split("\n")[0].split(" ")[0]);
if (!isNaN(span)) {
childDiv.setAttribute("style", "flex-grow:" + span.toString());
}
let afterText = false;
processList(itemListItem);
for (let itemListItemChild of Array.from(itemListItem.childNodes)) {
if (afterText) {
childDiv.appendChild(itemListItemChild);
}
if (itemListItemChild.nodeName == "#text") {
afterText = true;
}
}
}
}
}
};
this.registerMarkdownPostProcessor((element, context) => {
processList(element);
});
});
}
onunload() {
}
};

@ -0,0 +1,10 @@
{
"id": "obsidian-columns",
"name": "Obsidian Columns",
"version": "1.0.4",
"minAppVersion": "0.12.0",
"description": "Allows you to create columns in Obsidian Markdown",
"author": "Trevor Nichols",
"authorUrl": "https://github.com/tnichols217/obsidian-columns",
"isDesktopOnly": false
}

@ -0,0 +1,10 @@
.columnParent {
display: flex;
padding: 5px 5px
}
.columnChild {
flex-grow: 1;
flex-basis: 0px;
padding: 0px 10px
}

@ -1484,11 +1484,6 @@
"tags": 4, "tags": 4,
"links": 1 "links": 1
}, },
"00.02 Inbox/Lionel Asbo.md": {
"size": 1280,
"tags": 3,
"links": 2
},
"00.02 Inbox/Soumission.md": { "00.02 Inbox/Soumission.md": {
"size": 1141, "size": 1141,
"tags": 3, "tags": 3,
@ -2392,7 +2387,7 @@
"00.03 News/What Is the Metaverse A Beginner's Guide to Tech's Latest Obsession.md": { "00.03 News/What Is the Metaverse A Beginner's Guide to Tech's Latest Obsession.md": {
"size": 32838, "size": 32838,
"tags": 6, "tags": 6,
"links": 1 "links": 2
}, },
"01.02 Home/Fashion.md": { "01.02 Home/Fashion.md": {
"size": 1577, "size": 1577,
@ -2437,7 +2432,7 @@
"00.03 News/If they could turn back time how tech billionaires are trying to reverse the ageing process.md": { "00.03 News/If they could turn back time how tech billionaires are trying to reverse the ageing process.md": {
"size": 15950, "size": 15950,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.03 News/Inside a $4-billion family feud.md": { "00.03 News/Inside a $4-billion family feud.md": {
"size": 38245, "size": 38245,
@ -3007,7 +3002,7 @@
"00.03 News/What happened to Starbucks How a progressive company lost its way.md": { "00.03 News/What happened to Starbucks How a progressive company lost its way.md": {
"size": 31062, "size": 31062,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.03 News/How Putins Oligarchs Bought London.md": { "00.03 News/How Putins Oligarchs Bought London.md": {
"size": 10189, "size": 10189,
@ -3042,7 +3037,7 @@
"00.03 News/The real Mission Impossible.md": { "00.03 News/The real Mission Impossible.md": {
"size": 17887, "size": 17887,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.03 News/You Dont Know Much About Jay Penske. And Hes Fine With That..md": { "00.03 News/You Dont Know Much About Jay Penske. And Hes Fine With That..md": {
"size": 21267, "size": 21267,
@ -3052,7 +3047,7 @@
"00.03 News/The death spiral of an American family.md": { "00.03 News/The death spiral of an American family.md": {
"size": 22546, "size": 22546,
"tags": 2, "tags": 2,
"links": 1 "links": 2
}, },
"00.03 News/Saint Peters Is a Miracle.md": { "00.03 News/Saint Peters Is a Miracle.md": {
"size": 21796, "size": 21796,
@ -3472,7 +3467,7 @@
"00.03 News/8 Endangered Places We Can Still Save From Climate Change.md": { "00.03 News/8 Endangered Places We Can Still Save From Climate Change.md": {
"size": 23264, "size": 23264,
"tags": 2, "tags": 2,
"links": 1 "links": 2
}, },
"00.01 Admin/Calendars/2022-04-04.md": { "00.01 Admin/Calendars/2022-04-04.md": {
"size": 1016, "size": 1016,
@ -3712,12 +3707,12 @@
"00.03 News/Jeffrey Epstein, a Rare Cello and an Enduring Mystery.md": { "00.03 News/Jeffrey Epstein, a Rare Cello and an Enduring Mystery.md": {
"size": 21091, "size": 21091,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.03 News/“The Eye in the Sea” camera observes elusive deep sea animals.md": { "00.03 News/“The Eye in the Sea” camera observes elusive deep sea animals.md": {
"size": 17391, "size": 17391,
"tags": 4, "tags": 4,
"links": 1 "links": 2
}, },
"00.01 Admin/Calendars/2022-04-24.md": { "00.01 Admin/Calendars/2022-04-24.md": {
"size": 1009, "size": 1009,
@ -3748,14 +3743,79 @@
"size": 1008, "size": 1008,
"tags": 0, "tags": 0,
"links": 4 "links": 4
},
"00.01 Admin/Calendars/2022-04-27.md": {
"size": 1154,
"tags": 0,
"links": 8
},
"00.01 Admin/Calendars/2022-04-29 Meggi-mo arrives in Lisbon.md": {
"size": 147,
"tags": 0,
"links": 3
},
"00.01 Admin/Calendars/2022-05-01 Meggi-mo's departure to Belfast.md": {
"size": 163,
"tags": 0,
"links": 4
},
"03.01 Reading list/Lionel Asbo.md": {
"size": 1280,
"tags": 3,
"links": 3
},
"00.02 Inbox/Vernon Subutex 1.md": {
"size": 1158,
"tags": 0,
"links": 1
},
"00.01 Admin/Calendars/2022-04-28.md": {
"size": 1021,
"tags": 0,
"links": 4
},
"00.01 Admin/Calendars/2022-04-29.md": {
"size": 1011,
"tags": 0,
"links": 4
},
"00.01 Admin/Calendars/2022-05-15 Definite arrival of Meggi-mo to Züzü.md": {
"size": 208,
"tags": 0,
"links": 3
},
"00.01 Admin/Calendars/2022-06-17 Gorillaz - arenes de Nimes.md": {
"size": 188,
"tags": 0,
"links": 3
},
"00.01 Admin/Calendars/2022-04-30.md": {
"size": 1015,
"tags": 0,
"links": 4
},
"00.01 Admin/Calendars/2022-05-01.md": {
"size": 1009,
"tags": 0,
"links": 4
},
"00.01 Admin/Calendars/2022-05-01 Départ de Lisbonne.md": {
"size": 174,
"tags": 0,
"links": 3
},
"00.01 Admin/Calendars/2022-04-27 Arrivée à Lisbonne.md": {
"size": 149,
"tags": 0,
"links": 2
} }
}, },
"commitTypes": { "commitTypes": {
"/": { "/": {
"Refactor": 512, "Refactor": 516,
"Create": 411, "Create": 423,
"Link": 829, "Link": 852,
"Expand": 393 "Expand": 404
} }
}, },
"dailyCommits": { "dailyCommits": {
@ -3767,21 +3827,21 @@
"4": 12, "4": 12,
"5": 6, "5": 6,
"6": 17, "6": 17,
"7": 147, "7": 154,
"8": 217, "8": 221,
"9": 172, "9": 175,
"10": 93, "10": 100,
"11": 79, "11": 80,
"12": 103, "12": 105,
"13": 180, "13": 187,
"14": 125, "14": 133,
"15": 92, "15": 96,
"16": 62, "16": 62,
"17": 88, "17": 88,
"18": 251, "18": 251,
"19": 71, "19": 71,
"20": 92, "20": 97,
"21": 55, "21": 57,
"22": 160, "22": 160,
"23": 42 "23": 42
} }
@ -3790,16 +3850,27 @@
"/": { "/": {
"Mon": 338, "Mon": 338,
"Tue": 183, "Tue": 183,
"Wed": 200, "Wed": 224,
"Thu": 279, "Thu": 279,
"Fri": 174, "Fri": 188,
"Sat": 0, "Sat": 0,
"Sun": 971 "Sun": 983
} }
}, },
"recentCommits": { "recentCommits": {
"/": { "/": {
"Expanded": [ "Expanded": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01.md\"> 2022-05-01 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-30.md\"> 2022-04-30 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-06-17 Gorillaz - arenes de Nimes.md\"> 2022-06-17 Gorillaz - arenes de Nimes </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-15 Definite arrival of Meggi-mo to Züzü.md\"> 2022-05-15 Definite arrival of Meggi-mo to Züzü </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-28.md\"> 2022-04-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29.md\"> 2022-04-29 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Vernon Subutex 1.md\"> Vernon Subutex 1 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29 Meggi-mo arrives in Lisbon.md\"> 2022-04-29 Meggi-mo arrives in Lisbon </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01 Meggi-mo's departure to Belfast.md\"> 2022-05-01 Meggi-mo's departure to Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27.md\"> 2022-04-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27.md\"> 2022-04-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-26.md\"> 2022-04-26 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-26.md\"> 2022-04-26 </a>",
"<a class=\"internal-link\" href=\"Spanakopia pie.md\"> Spanakopia pie </a>", "<a class=\"internal-link\" href=\"Spanakopia pie.md\"> Spanakopia pie </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>", "<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
@ -3839,20 +3910,21 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Quick shares/Mobile - FR.md\"> Mobile - FR </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Quick shares/Mobile - FR.md\"> Mobile - FR </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Quick shares/Mobile - UK.md\"> Mobile - UK </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Quick shares/Mobile - UK.md\"> Mobile - UK </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Quick shares/Mobile - CH.md\"> Mobile - CH </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Quick shares/Mobile - CH.md\"> Mobile - CH </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-12.md\"> 2022-04-12 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-12.md\"> 2022-04-12 </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-24 2nd tour élections présidentielles.md\"> 2022-04-24 2nd tour élections présidentielles </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-10 1er tour Présidentielle.md\"> 2022-04-10 1er tour Présidentielle </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-12.md\"> 2022-04-12 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-24 2nd tour élections présidentielles.md\"> 2022-04-24 2nd tour élections présidentielles </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Test sheet.md\"> Test sheet </a>",
"<a class=\"internal-link\" href=\"Storj.md\"> Storj </a>",
"<a class=\"internal-link\" href=\"05.01 Computer setup/Zint.md\"> Zint </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Map View Coordinates.md\"> Map View Coordinates </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Map View Coordinates.md\"> Map View Coordinates </a>",
"<a class=\"internal-link\" href=\"05.01 Computer setup/Zint.md\"> Zint </a>",
"<a class=\"internal-link\" href=\"05.01 Computer setup/Zint.md\"> Zint </a>"
], ],
"Created": [ "Created": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27 Arrivée à Lisbonne.md\"> 2022-04-27 Arrivée à Lisbonne </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01 Départ de Lisbonne.md\"> 2022-05-01 Départ de Lisbonne </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01.md\"> 2022-05-01 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-30.md\"> 2022-04-30 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-06-17 Gorillaz - arenes de Nimes.md\"> 2022-06-17 Gorillaz - arenes de Nimes </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-15 Definite arrival of Meffi.md\"> 2022-05-15 Definite arrival of Meffi </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29.md\"> 2022-04-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29.md\"> 2022-04-29 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Vernon Subutex 1 - Virginie Despentes.md\"> Vernon Subutex 1 - Virginie Despentes </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01 Meggi-mo's departure to Belfast.md\"> 2022-05-01 Meggi-mo's departure to Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29 Meggi-mo arrives in Lisbon.md\"> 2022-04-29 Meggi-mo arrives in Lisbon </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27.md\"> 2022-04-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-26.md\"> 2022-04-26 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-26.md\"> 2022-04-26 </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Unseen Scars of Those Who Kill Via Remote Control.md\"> The Unseen Scars of Those Who Kill Via Remote Control </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/The Unseen Scars of Those Who Kill Via Remote Control.md\"> The Unseen Scars of Those Who Kill Via Remote Control </a>",
@ -3891,21 +3963,13 @@
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Big Shells With Spicy Lamb Sausage and Pistachios.md\"> Big Shells With Spicy Lamb Sausage and Pistachios </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Churros with Bittersweet Chocolate Sauce.md\"> Churros with Bittersweet Chocolate Sauce </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-24 2nd tour élections présidentielles.md\"> 2022-04-24 2nd tour élections présidentielles </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-12.md\"> 2022-04-12 </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-11.md\"> 2022-04-11 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/H-Town United An Unlikely Soccer Power Rises in Texas.md\"> H-Town United An Unlikely Soccer Power Rises in Texas </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Unravelling of an Expert on Serial Killers.md\"> The Unravelling of an Expert on Serial Killers </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The twisted mind of a serial romance scammer.md\"> The twisted mind of a serial romance scammer </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Making of Vladimir Putin.md\"> The Making of Vladimir Putin </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Meet the DIY Duo Behind the Amazon Labor Unions Guerrilla Bid to Make History.md\"> Meet the DIY Duo Behind the Amazon Labor Unions Guerrilla Bid to Make History </a>"
], ],
"Renamed": [ "Renamed": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-15 Definite arrival of Meggi-mo to Züzü.md\"> 2022-05-15 Definite arrival of Meggi-mo to Züzü </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-28.md\"> 2022-04-28 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Vernon Subutex 1.md\"> Vernon Subutex 1 </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Lionel Asbo.md\"> Lionel Asbo </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Spanakopia pie.md\"> Spanakopia pie </a>", "<a class=\"internal-link\" href=\"03.03 Food & Wine/Spanakopia pie.md\"> Spanakopia pie </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Unseen Scars of Those Who Kill Via Remote Control.md\"> The Unseen Scars of Those Who Kill Via Remote Control </a>", "<a class=\"internal-link\" href=\"00.03 News/The Unseen Scars of Those Who Kill Via Remote Control.md\"> The Unseen Scars of Those Who Kill Via Remote Control </a>",
"<a class=\"internal-link\" href=\"00.03 News/Down the Hatch.md\"> Down the Hatch </a>", "<a class=\"internal-link\" href=\"00.03 News/Down the Hatch.md\"> Down the Hatch </a>",
@ -3952,11 +4016,7 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-05.md\"> 2022-02-05 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-05.md\"> 2022-02-05 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-04.md\"> 2022-02-04 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-04.md\"> 2022-02-04 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-03.md\"> 2022-02-03 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-03.md\"> 2022-02-03 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-02.md\"> 2022-02-02 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-02.md\"> 2022-02-02 </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-01.md\"> 2022-02-01 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-19.md\"> 2022-02-19 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-18.md\"> 2022-02-18 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-02-17.md\"> 2022-02-17 </a>"
], ],
"Tagged": [ "Tagged": [
"<a class=\"internal-link\" href=\"Spanakopia pie.md\"> Spanakopia pie </a>", "<a class=\"internal-link\" href=\"Spanakopia pie.md\"> Spanakopia pie </a>",
@ -4100,6 +4160,29 @@
"<a class=\"internal-link\" href=\"00.02 Inbox/Kimchi-Lentil Stew With Poached Eggs.md\"> Kimchi-Lentil Stew With Poached Eggs </a>" "<a class=\"internal-link\" href=\"00.02 Inbox/Kimchi-Lentil Stew With Poached Eggs.md\"> Kimchi-Lentil Stew With Poached Eggs </a>"
], ],
"Linked": [ "Linked": [
"<a class=\"internal-link\" href=\"00.03 News/The real Mission Impossible.md\"> The real Mission Impossible </a>",
"<a class=\"internal-link\" href=\"00.03 News/If they could turn back time how tech billionaires are trying to reverse the ageing process.md\"> If they could turn back time how tech billionaires are trying to reverse the ageing process </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01 Départ de Lisbonne.md\"> 2022-05-01 Départ de Lisbonne </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27 Arrivée à Lisbonne.md\"> 2022-04-27 Arrivée à Lisbonne </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01.md\"> 2022-05-01 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-30.md\"> 2022-04-30 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-06-17 Gorillaz - arenes de Nimes.md\"> 2022-06-17 Gorillaz - arenes de Nimes </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-15 Definite arrival of Meggi-mo to Züzü.md\"> 2022-05-15 Definite arrival of Meggi-mo to Züzü </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-28.md\"> 2022-04-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29.md\"> 2022-04-29 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Vernon Subutex 1.md\"> Vernon Subutex 1 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Jeffrey Epstein, a Rare Cello and an Enduring Mystery.md\"> Jeffrey Epstein, a Rare Cello and an Enduring Mystery </a>",
"<a class=\"internal-link\" href=\"00.03 News/8 Endangered Places We Can Still Save From Climate Change.md\"> 8 Endangered Places We Can Still Save From Climate Change </a>",
"<a class=\"internal-link\" href=\"00.03 News/What happened to Starbucks How a progressive company lost its way.md\"> What happened to Starbucks How a progressive company lost its way </a>",
"<a class=\"internal-link\" href=\"00.03 News/What Is the Metaverse A Beginner's Guide to Tech's Latest Obsession.md\"> What Is the Metaverse A Beginner's Guide to Tech's Latest Obsession </a>",
"<a class=\"internal-link\" href=\"00.03 News/“The Eye in the Sea” camera observes elusive deep sea animals.md\"> “The Eye in the Sea” camera observes elusive deep sea animals </a>",
"<a class=\"internal-link\" href=\"00.03 News/The death spiral of an American family.md\"> The death spiral of an American family </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Lionel Asbo.md\"> Lionel Asbo </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27.md\"> 2022-04-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-29 Meggi-mo arrives in Lisbon.md\"> 2022-04-29 Meggi-mo arrives in Lisbon </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-05-01 Meggi-mo's departure to Belfast.md\"> 2022-05-01 Meggi-mo's departure to Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27.md\"> 2022-04-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-27.md\"> 2022-04-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-26.md\"> 2022-04-26 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-26.md\"> 2022-04-26 </a>",
"<a class=\"internal-link\" href=\"Spanakopia pie.md\"> Spanakopia pie </a>", "<a class=\"internal-link\" href=\"Spanakopia pie.md\"> Spanakopia pie </a>",
"<a class=\"internal-link\" href=\"00.03 News/Down the Hatch.md\"> Down the Hatch </a>", "<a class=\"internal-link\" href=\"00.03 News/Down the Hatch.md\"> Down the Hatch </a>",
@ -4127,30 +4210,7 @@
"<a class=\"internal-link\" href=\"00.03 News/One Last Trip.md\"> One Last Trip </a>", "<a class=\"internal-link\" href=\"00.03 News/One Last Trip.md\"> One Last Trip </a>",
"<a class=\"internal-link\" href=\"00.03 News/The improbable endless heroism of Volodymyr Zelensky.md\"> The improbable endless heroism of Volodymyr Zelensky </a>", "<a class=\"internal-link\" href=\"00.03 News/The improbable endless heroism of Volodymyr Zelensky.md\"> The improbable endless heroism of Volodymyr Zelensky </a>",
"<a class=\"internal-link\" href=\"00.03 News/The curse of sliced bread.md\"> The curse of sliced bread </a>", "<a class=\"internal-link\" href=\"00.03 News/The curse of sliced bread.md\"> The curse of sliced bread </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-19.md\"> 2022-04-19 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-19.md\"> 2022-04-19 </a>"
"<a class=\"internal-link\" href=\"00.03 News/What i learnt during my 3 days offline.md\"> What i learnt during my 3 days offline </a>",
"<a class=\"internal-link\" href=\"00.03 News/Lovemaking for longevity a recipe from Tokyos imperial archives Aeon Essays.md\"> Lovemaking for longevity a recipe from Tokyos imperial archives Aeon Essays </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Bullet and the Ballplayer.md\"> The Bullet and the Ballplayer </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-18.md\"> 2022-04-18 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The 1918 flu didnt end in 1918. Heres what its third year can teach us..md\"> The 1918 flu didnt end in 1918. Heres what its third year can teach us. </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Thai Basil Sauce Noodles with Jammy Eggs.md\"> Thai Basil Sauce Noodles with Jammy Eggs </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Udon in Buttery Tomato n Soy broth.md\"> Udon in Buttery Tomato n Soy broth </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-16.md\"> 2022-04-16 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-18.md\"> 2022-04-18 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-18.md\"> 2022-04-18 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-17.md\"> 2022-04-17 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-17.md\"> 2022-04-17 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The History of the Varsity Jacket, From Harvard to Hip-Hop.md\"> The History of the Varsity Jacket, From Harvard to Hip-Hop </a>",
"<a class=\"internal-link\" href=\"00.03 News/How an Ivy League School Turned Against a Student.md\"> How an Ivy League School Turned Against a Student </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How an Ivy League School Turned Against a Student.md\"> How an Ivy League School Turned Against a Student </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-04-16.md\"> 2022-04-16 </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Cantinetta Antinori.md\"> Cantinetta Antinori </a>",
"<a class=\"internal-link\" href=\"Cantinetta Antinori.md\"> Cantinetta Antinori </a>",
"<a class=\"internal-link\" href=\"00.03 News/This Whole Thing Has F---ed Me Up.md\"> This Whole Thing Has F---ed Me Up </a>",
"<a class=\"internal-link\" href=\"00.03 News/Simone de Beauvoir recommends we fight for ourselves as we age Psyche Ideas.md\"> Simone de Beauvoir recommends we fight for ourselves as we age Psyche Ideas </a>",
"<a class=\"internal-link\" href=\"00.03 News/Ego is the Enemy The Legend of Genghis Khan - Farnam Street.md\"> Ego is the Enemy The Legend of Genghis Khan - Farnam Street </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Making of Vladimir Putin.md\"> The Making of Vladimir Putin </a>",
"<a class=\"internal-link\" href=\"00.03 News/Tech and War.md\"> Tech and War </a>"
], ],
"Removed Tags from": [ "Removed Tags from": [
"<a class=\"internal-link\" href=\"06.02 Investments/Le Miel de Paris.md\"> Le Miel de Paris </a>", "<a class=\"internal-link\" href=\"06.02 Investments/Le Miel de Paris.md\"> Le Miel de Paris </a>",

@ -453,21 +453,21 @@
"06.02 Investments/VC Tasks.md": [ "06.02 Investments/VC Tasks.md": [
{ {
"title": "[[VC Tasks#internet alerts|monitor VC news and publications]]", "title": "[[VC Tasks#internet alerts|monitor VC news and publications]]",
"time": "2022-04-29", "time": "2022-05-06",
"rowNumber": 74 "rowNumber": 74
} }
], ],
"06.02 Investments/Crypto Tasks.md": [ "06.02 Investments/Crypto Tasks.md": [
{ {
"title": "[[Crypto Tasks#internet alerts|monitor Crypto news and publications]]", "title": "[[Crypto Tasks#internet alerts|monitor Crypto news and publications]]",
"time": "2022-04-29", "time": "2022-05-06",
"rowNumber": 74 "rowNumber": 74
} }
], ],
"06.02 Investments/Equity Tasks.md": [ "06.02 Investments/Equity Tasks.md": [
{ {
"title": "[[Equity Tasks#internet alerts|monitor Equity news and publications]]", "title": "[[Equity Tasks#internet alerts|monitor Equity news and publications]]",
"time": "2022-04-29", "time": "2022-05-06",
"rowNumber": 74 "rowNumber": 74
} }
], ],
@ -493,14 +493,14 @@
"00.01 Admin/Calendars/2022-03-02.md": [ "00.01 Admin/Calendars/2022-03-02.md": [
{ {
"title": "15:55 [[2022-03-02|Memo]], [[MRCK|Meggi-mo]]: re-do her chair", "title": "15:55 [[2022-03-02|Memo]], [[MRCK|Meggi-mo]]: re-do her chair",
"time": "2022-04-27", "time": "2022-05-31",
"rowNumber": 91 "rowNumber": 91
} }
], ],
"00.01 Admin/Calendars/2022-01-22.md": [ "00.01 Admin/Calendars/2022-01-22.md": [
{ {
"title": "22:46 [[2022-01-22|Memo]], [[@Finances]]: GBP account re moving to ZH", "title": "22:46 [[2022-01-22|Memo]], [[@Finances]]: GBP account re moving to ZH",
"time": "2022-04-30", "time": "2022-05-02",
"rowNumber": 87 "rowNumber": 87
} }
], ],
@ -521,7 +521,14 @@
"00.01 Admin/Calendars/2022-04-10.md": [ "00.01 Admin/Calendars/2022-04-10.md": [
{ {
"title": "21:01 [[2022-04-10|Memo]], [[Amaury de Villeneuve|Chapal]]: trouver un réparateur pour l'oignon Lipp", "title": "21:01 [[2022-04-10|Memo]], [[Amaury de Villeneuve|Chapal]]: trouver un réparateur pour l'oignon Lipp",
"time": "2022-05-01", "time": "2022-05-05",
"rowNumber": 91
}
],
"00.01 Admin/Calendars/2022-04-27.md": [
{
"title": "12:54 [[2022-04-27|Memo]], [[Selfhosting]], [[Configuring Caddy]]: firm up filters & fields to print in daily report",
"time": "2022-05-08",
"rowNumber": 91 "rowNumber": 91
} }
] ]

@ -4,7 +4,7 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "19fe3fd3bef5272b", "id": "0ed488bf0b5e1d30",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
@ -151,17 +151,17 @@
], ],
"currentTab": 2 "currentTab": 2
}, },
"active": "19fe3fd3bef5272b", "active": "0ed488bf0b5e1d30",
"lastOpenFiles": [ "lastOpenFiles": [
"01.02 Home/@Main Dashboard.md", "01.02 Home/@Main Dashboard.md",
"00.01 Admin/Calendars/2022-04-26.md", "00.01 Admin/Calendars/2022-05-01.md",
"00.03 News/“The Eye in the Sea” camera observes elusive deep sea animals.md", "00.01 Admin/Calendars/2022-06-17 Gorillaz - arenes de Nimes.md",
"00.01 Admin/Calendars/2022-04-25.md", "00.03 News/The real Mission Impossible.md",
"03.03 Food & Wine/Spanakopia pie.md", "00.03 News/If they could turn back time how tech billionaires are trying to reverse the ageing process.md",
"03.03 Food & Wine/@Main dishes.md", "00.01 Admin/Calendars/2022-05-01 Départ de Lisbonne.md",
"01.02 Home/Voitures.md", "00.01 Admin/Calendars/2022-04-27 Arrivée à Lisbonne.md",
"03.03 Food & Wine/Braised Short Ribs with Squash and Chile.md", "00.01 Admin/Calendars/2022-04-30.md",
"01.02 Home/@Shopping list.md", "00.01 Admin/Calendars/2022-04-29.md",
"00.03 News/The Unseen Scars of Those Who Kill Via Remote Control.md" "00.01 Admin/Calendars/2022-04-28.md"
] ]
} }

@ -85,7 +85,7 @@ This section does serve for quick memos.
- 14:21 Megan Rose is about to leave to the airport - 14:21 Megan Rose is about to leave to the airport
- [ ] 22:46 [[2022-01-22|Memo]], [[@Finances]]: GBP account re moving to ZH 📅 2022-04-30 - [ ] 22:46 [[2022-01-22|Memo]], [[@Finances]]: GBP account re moving to ZH 📅 2022-05-02
#### Sub-header 2 #### Sub-header 2

@ -89,7 +89,7 @@ This section does serve for quick memos.
%% ### %% %% ### %%
&emsp; &emsp;
- [ ] 15:55 [[2022-03-02|Memo]], [[MRCK|Meggi-mo]]: re-do her chair 📅 2022-04-27 - [ ] 15:55 [[2022-03-02|Memo]], [[MRCK|Meggi-mo]]: re-do her chair 📅 2022-05-31
--- ---

@ -89,7 +89,7 @@ This section does serve for quick memos.
%% ### %% %% ### %%
&emsp; &emsp;
- [ ] 21:01 [[2022-04-10|Memo]], [[Amaury de Villeneuve|Chapal]]: trouver un réparateur pour l'oignon Lipp 📆2022-05-01 - [ ] 21:01 [[2022-04-10|Memo]], [[Amaury de Villeneuve|Chapal]]: trouver un réparateur pour l'oignon Lipp 📅 2022-05-05
--- ---

@ -13,9 +13,9 @@ Stress: 35
FrontHeadBar: 5 FrontHeadBar: 5
EarHeadBar: 40 EarHeadBar: 40
BackHeadBar: 30 BackHeadBar: 30
Water: 1.7 Water: 2.2
Coffee: 3 Coffee: 3
Steps: Steps: 5825
Ski: Ski:
Riding: Riding:
Racket: Racket:

@ -0,0 +1,9 @@
---
title: Arrivée à Lisbonne
allDay: false
startTime: 16:00
endTime: 16:30
date: 2022-04-27
---
Arrival on [[2022-04-27|this day]] in [[Lisbon]].

@ -0,0 +1,106 @@
---
Date: 2022-04-27
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: Yes
Sleep: 7
Happiness: 90
Gratefulness: 90
Stress: 40
FrontHeadBar: 5
EarHeadBar: 45
BackHeadBar: 35
Water: 2.33
Coffee: 5
Steps: 9527
Ski:
Riding:
Racket:
Football:
title: "Daily Note"
allDay: true
date: 2022-04-27
---
%% Parent:: [[@Life Admin]] %%
---
[[2022-04-26|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2022-04-28|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2022-04-27Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2022-04-27NSave
&emsp;
# 2022-04-27
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Memos
&emsp;
#### Memos
This section does serve for quick memos.
&emsp;
%% ### %%
&emsp;
- [ ] 12:54 [[2022-04-27|Memo]], [[Selfhosting]], [[Configuring Caddy]]: firm up filters & fields to print in daily report 📆2022-05-08
- [ ] 12:59 Departure to [[Lisbon]]
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,104 @@
---
Date: 2022-04-29
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: Yes
Sleep: 6
Happiness: 90
Gratefulness: 90
Stress: 35
FrontHeadBar: 5
EarHeadBar: 40
BackHeadBar: 30
Water: 1.5
Coffee: 0
Steps: 11476
Ski:
Riding:
Racket:
Football:
title: "Daily Note"
allDay: true
date: 2022-04-28
---
%% Parent:: [[@Life Admin]] %%
---
[[2022-04-27|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2022-04-29|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2022-04-28Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2022-04-28NSave
&emsp;
# 2022-04-28
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Memos
&emsp;
#### Memos
This section does serve for quick memos.
&emsp;
%% ### %%
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,7 @@
---
title: Meggi-mo arrives in Lisbon
allDay: true
date: 2022-04-29
---
My [[MRCK|Meggi-mo]] is arriving to [[Lisbon]] on [[2022-04-28|that day]].

@ -0,0 +1,104 @@
---
Date: 2022-04-29
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: Yes
Sleep: 7.5
Happiness: 90
Gratefulness: 90
Stress: 35
FrontHeadBar: 5
EarHeadBar: 40
BackHeadBar: 30
Water: 1.54
Coffee: 2
Steps: 7137
Ski:
Riding:
Racket:
Football:
title: "Daily Note"
allDay: true
date: 2022-04-29
---
%% Parent:: [[@Life Admin]] %%
---
[[2022-04-28|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2022-04-30|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2022-04-29Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2022-04-29NSave
&emsp;
# 2022-04-29
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Memos
&emsp;
#### Memos
This section does serve for quick memos.
&emsp;
%% ### %%
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,104 @@
---
Date: 2022-04-30
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: Yes
Sleep: 8
Happiness: 95
Gratefulness: 95
Stress: 35
FrontHeadBar: 5
EarHeadBar: 40
BackHeadBar: 30
Water: 2.88
Coffee: 2
Steps: 16090
Ski:
Riding:
Racket:
Football:
title: "Daily Note"
allDay: true
date: 2022-04-30
---
%% Parent:: [[@Life Admin]] %%
---
[[2022-04-29|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2022-05-01|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2022-04-30Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2022-04-30NSave
&emsp;
# 2022-04-30
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Memos
&emsp;
#### Memos
This section does serve for quick memos.
&emsp;
%% ### %%
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,9 @@
---
title: Départ de Lisbonne
allDay: false
startTime: 15:30
endTime: 16:00
date: 2022-05-01
---
Departure from [[Lisbon]] to [[@@Zürich|Zürich]] [[2022-05-01|this day]].

@ -0,0 +1,7 @@
---
title: Meggi-mo's departure to Belfast
allDay: true
date: 2022-05-01
---
[[MRCK|Meggi-mo]] is departing [[Lisbon]] to [[Belfast]] on [[2022-05-01|that day]].

@ -0,0 +1,104 @@
---
Date: 2022-05-01
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: Yes
Sleep: 8
Happiness: 95
Gratefulness: 95
Stress: 35
FrontHeadBar: 5
EarHeadBar: 40
BackHeadBar: 30
Water: 1.75
Coffee: 2
Steps:
Ski:
Riding:
Racket:
Football:
title: "Daily Note"
allDay: true
date: 2022-05-01
---
%% Parent:: [[@Life Admin]] %%
---
[[2022-04-30|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2022-05-02|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2022-05-01Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2022-05-01NSave
&emsp;
# 2022-05-01
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Memos
&emsp;
#### Memos
This section does serve for quick memos.
&emsp;
%% ### %%
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,9 @@
---
title: Definite arrival of Meggi-mo to Züzü
allDay: true
startTime: 06:30
endTime: 07:00
date: 2022-05-15
---
[[MRCK|Meggi-mo]] is arriving to [[@@Zürich|Zürich]] for good on [[2022-05-15|that day]].

@ -0,0 +1,9 @@
---
title: Gorillaz - arenes de Nimes
allDay: false
startTime: 20:00
endTime: 22:30
date: 2022-06-17
---
Concert de Gorillaz à [[Nimes]] avec [[MRCK|Boubinou]] [[2022-06-17|le 17 juin]].

@ -0,0 +1,102 @@
---
title: Vernon Subutex, 1
author: Virginie Despentes
category: Fiction
publisher: Grasset
publish_date: 2015
total_page: 400
status:
start_read_date:
finish_read_date:
my_rate:
book_note:
isbn10: 2246857716
isbn13: 9782246857716
Tag: [""]
Date:
DocType: "Source"
Hierarchy: "NonRoot"
TimeStamp:
location:
Source:
Type: "Book"
Author: "Virginie Despentes"
Language: FR
Published: 2015
Link:
Read:
Cover: https://books.google.com/books/content?id=gLktBgAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api
CollapseMetaTable: yes
---
Parent:: [[@Reading master|Reading list]]
ReadingState:: In progress
---
&emsp;
```button
name Edit Source parameters
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-SourceEdit
```button
name Save
type command
action Save current file
id Save
```
^button-TNSave
&emsp;
# {{title}}
&emsp;
```ad-abstract
title: Summary
collapse: open
{{excerpt}}
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Cover
&emsp;
```dataviewjs
dv.el("span", "![](" + dv.current().Source.Cover + ")")
```
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -14,7 +14,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-04-27]]
--- ---

@ -13,7 +13,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-05-01]]
--- ---

@ -13,7 +13,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-04-27]]
--- ---

@ -14,7 +14,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-04-27]]
--- ---

@ -14,7 +14,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-05-01]]
--- ---
@ -76,7 +76,7 @@ After that, Jake Myers, credited as an executive producer on *Rogue Nation* in 2
On Feb. 14, 2021, McQuarrie posted on Instagram that the production just needed a few “finishing touches” (which it still awaits). Meanwhile, in response to a COVID-19 surge in the U.K., the shoot shut down for the fifth time. On Feb. 14, 2021, McQuarrie posted on Instagram that the production just needed a few “finishing touches” (which it still awaits). Meanwhile, in response to a COVID-19 surge in the U.K., the shoot shut down for the fifth time.
\*\*\* ---
Early in 2021, in the midst of these struggles, Gianopulos informed Cruise that the film would receive a 45-day theatrical window before moving to Paramount+. The studio had to know how unwelcome this news would be. Early in 2021, in the midst of these struggles, Gianopulos informed Cruise that the film would receive a 45-day theatrical window before moving to Paramount+. The studio had to know how unwelcome this news would be.

@ -13,7 +13,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-04-27]]
--- ---

@ -14,7 +14,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-04-27]]
--- ---

@ -14,7 +14,7 @@ CollapseMetaTable: Yes
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-04-27]]
--- ---

@ -14,6 +14,7 @@ Source:
Published: 2016 Published: 2016
Read: 2020-09 Read: 2020-09
Cover: https://products-images.di-static.com/image/adrien-candiard-comprendre-l-islam-ou-plutot-pourquoi-on-n-y-comprend-rien/9782081386587-200x303-1.jpg Cover: https://products-images.di-static.com/image/adrien-candiard-comprendre-l-islam-ou-plutot-pourquoi-on-n-y-comprend-rien/9782081386587-200x303-1.jpg
CollapseMetaTable: yes
--- ---

@ -12,14 +12,14 @@ Source:
Author: Martin Amis Author: Martin Amis
Published: 2012 Published: 2012
Link: https://en.wikipedia.org/wiki/Lionel_Asbo:_State_of_England Link: https://en.wikipedia.org/wiki/Lionel_Asbo:_State_of_England
Read: Read: 2022-04-27
Cover: https://products-images.di-static.com/image/martin-amis-lionel-asbo/9780099565680-475x500-1.webp Cover: https://products-images.di-static.com/image/martin-amis-lionel-asbo/9780099565680-475x500-1.webp
CollapseMetaTable: yes CollapseMetaTable: yes
--- ---
Parent:: [[@Reading master|Reading list]] Parent:: [[@Reading master|Reading list]]
ReadingState:: In progress ReadingState:: [[2022-04-27]]
--- ---

@ -72,7 +72,8 @@ All tasks and to-dos Crypto-related.
[[#^Top|TOP]] [[#^Top|TOP]]
&emsp; &emsp;
- [ ] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-29 - [ ] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-05-06
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-29 ✅ 2022-04-29
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-22 ✅ 2022-04-22 - [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-22 ✅ 2022-04-22
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-15 ✅ 2022-04-15 - [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-15 ✅ 2022-04-15
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-08 ✅ 2022-04-08 - [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2022-04-08 ✅ 2022-04-08

@ -72,7 +72,8 @@ Note summarising all tasks and to-dos for Listed Equity investments.
[[#^Top|TOP]] [[#^Top|TOP]]
&emsp; &emsp;
- [ ] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-29 - [ ] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-05-06
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-29 ✅ 2022-04-29
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-22 ✅ 2022-04-22 - [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-22 ✅ 2022-04-22
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-15 ✅ 2022-04-15 - [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-15 ✅ 2022-04-15
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-08 ✅ 2022-04-08 - [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2022-04-08 ✅ 2022-04-08

@ -72,7 +72,8 @@ Tasks and to-dos for VC investments.
[[#^Top|TOP]] [[#^Top|TOP]]
&emsp; &emsp;
- [ ] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-29 - [ ] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-05-06
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-29 ✅ 2022-04-29
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-22 ✅ 2022-04-22 - [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-22 ✅ 2022-04-22
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-15 ✅ 2022-04-15 - [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-15 ✅ 2022-04-15
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-08 ✅ 2022-04-08 - [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2022-04-08 ✅ 2022-04-08

Loading…
Cancel
Save