parent
dcdc482146
commit
cedc481497
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "emoji-shortcodes",
|
||||
"name": "Emoji Shortcodes",
|
||||
"version": "2.0.0",
|
||||
"minAppVersion": "0.12.11",
|
||||
"description": "This Plugin enables the use of Markdown Emoji Shortcodes :smile:",
|
||||
"author": "phibr0",
|
||||
"authorUrl": "https://github.com/phibr0",
|
||||
"isDesktopOnly": false
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
a[href="https://www.buymeacoffee.com/phibr0"] > img {
|
||||
height: 2.2em;
|
||||
}
|
||||
|
||||
a[href="https://www.buymeacoffee.com/phibr0"]{
|
||||
transform: translate(0, 5%);
|
||||
}
|
||||
|
||||
.ES-suggester-container {
|
||||
display: flex;
|
||||
place-content: space-between;
|
||||
}
|
||||
|
||||
.ES-shortcode {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.ES-suggestion-item {
|
||||
padding-left: 10px;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,10 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-dice-roller",
|
||||
"name": "Dice Roller",
|
||||
"version": "6.5.0",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Inline dice rolling for Obsidian.md",
|
||||
"author": "Jeremy Valentine",
|
||||
"authorUrl": "",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
"id": "obsidian-dice-roller",
|
||||
"name": "Dice Roller",
|
||||
"version": "7.0.0",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Inline dice rolling for Obsidian.md",
|
||||
"author": "Jeremy Valentine",
|
||||
"authorUrl": "",
|
||||
"isDesktopOnly": false
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -1,104 +1,295 @@
|
||||
:root {
|
||||
--timeline-main-line: rgba(0, 0, 0, 0.1) ;
|
||||
--timeline-time-line: rgba(0, 0, 0, 0.2) ;
|
||||
--timeline-dashed-line: rgba(0, 0, 0, 0.1) ;
|
||||
}
|
||||
|
||||
.theme-light .timeline {
|
||||
--timeline-main-line: rgba(0, 0, 0, 0.1) ;
|
||||
--timeline-time-line: rgba(0, 0, 0, 0.2) ;
|
||||
--timeline-dashed-line: rgba(0, 0, 0, 0.1) ;
|
||||
}
|
||||
|
||||
.theme-dark .timeline {
|
||||
--timeline-main-line: rgba(255, 255, 255, 0.1) ;
|
||||
--timeline-time-line: rgba(255, 255, 255, 0.2) ;
|
||||
--timeline-dashed-line: rgba(255, 255, 255, 0.1) ;
|
||||
}
|
||||
|
||||
.timeline.white {
|
||||
--timeline-main-line: rgba(255, 255, 255, 0.1) !important;
|
||||
--timeline-time-line: rgba(255, 255, 255, 0.2) !important;
|
||||
--timeline-dashed-line: rgba(255, 255, 255, 0.1) !important;
|
||||
}
|
||||
|
||||
.timeline.black {
|
||||
--timeline-main-line: rgba(0, 0, 0, 0.1) !important;
|
||||
--timeline-time-line: rgba(0, 0, 0, 0.2) !important;
|
||||
--timeline-dashed-line: rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
|
||||
.timeline.spaced-paragraph .description p {
|
||||
line-height: 1.7rem;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-ms-grid-columns: auto 0.5rem 1fr;
|
||||
grid-template-columns: auto 0.5rem 1fr;
|
||||
-webkit-column-gap: 1.3rem;
|
||||
column-gap: 1.3rem;
|
||||
row-gap: 4.5rem;
|
||||
margin-bottom: 2.25rem;
|
||||
margin-top: 2.25rem;
|
||||
}
|
||||
|
||||
.timeline .time *, .timeline .title * {
|
||||
font-size: 1.3rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.timeline .time {
|
||||
-ms-grid-column: 1;
|
||||
-ms-grid-column-span: 1;
|
||||
grid-column: 1 / span 1;
|
||||
position: relative;
|
||||
-ms-flex-item-align: start;
|
||||
-ms-grid-row-align: start;
|
||||
align-self: start;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.timeline .time::before {
|
||||
content: ' ';
|
||||
background-color: var(--timeline-time-line);
|
||||
position: absolute;
|
||||
width: 0.5rem;
|
||||
height: 100%;
|
||||
right: -1.8rem;
|
||||
}
|
||||
|
||||
.timeline .info {
|
||||
position: relative;
|
||||
-ms-grid-column: 3;
|
||||
-ms-grid-column-span: 1;
|
||||
grid-column: 3 / span 1;
|
||||
}
|
||||
|
||||
.timeline .info .title {
|
||||
margin-bottom: 0.86667rem;
|
||||
}
|
||||
|
||||
.timeline .info::after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
border-bottom: 0.1rem dashed var(--timeline-dashed-line);
|
||||
width: 100%;
|
||||
height: 2.2rem;
|
||||
}
|
||||
|
||||
.timeline .info:last-child::after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
.timeline .main-line {
|
||||
height: 100%;
|
||||
width: 0.5rem;
|
||||
-ms-grid-column: 2;
|
||||
-ms-grid-column-span: 1;
|
||||
grid-column: 2 / span 1;
|
||||
-ms-grid-row: 1;
|
||||
grid-row-start: 1;
|
||||
background-color: var(--timeline-main-line);
|
||||
}
|
||||
.timeline.line-2 .time-container::before, .timeline.line-2 .time-container::after {
|
||||
right: -2.2rem;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.timeline.line-2 .time-container::before {
|
||||
height: 1.2rem;
|
||||
width: 1.2rem;
|
||||
}
|
||||
|
||||
.timeline.line-2 .time-container::after {
|
||||
background: transparent;
|
||||
border: 0.2rem solid var(--text-normal);
|
||||
height: 0.8rem;
|
||||
width: 0.8rem;
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.timeline.line-2 .main-line {
|
||||
width: 0.2rem;
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.timeline.line-3 .time-container::before {
|
||||
background: var(--timeline-active-color);
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
border: 0.3rem solid var(--background-primary);
|
||||
right: -2.45rem;
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.timeline.line-3 .time-container::after {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.timeline.line-3 .main-line {
|
||||
width: 0.3rem;
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.timeline.line-4 .time-container::before, .timeline.line-4 .time-container::after {
|
||||
top: 50%;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.timeline.line-4 .time-container::before {
|
||||
background: var(--text-normal);
|
||||
height: 1.4rem;
|
||||
width: 1.4rem;
|
||||
right: -2.3rem;
|
||||
}
|
||||
|
||||
.timeline.line-4 .time-container::after {
|
||||
opacity: 1;
|
||||
background: var(--timeline-active-color);
|
||||
height: 0.77778rem;
|
||||
width: 0.77778rem;
|
||||
right: -1.98889rem;
|
||||
}
|
||||
|
||||
.timeline.line-4 .main-line {
|
||||
opacity: 1;
|
||||
width: 0.2rem;
|
||||
background-color: transparent;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, var(--text-normal)), color-stop(0%, rgba(255, 255, 255, 0)));
|
||||
background-image: linear-gradient(var(--text-normal) 60%, rgba(255, 255, 255, 0) 0%);
|
||||
background-position: right;
|
||||
background-size: 0.2rem 1.5rem;
|
||||
background-repeat: repeat-y;
|
||||
}
|
||||
|
||||
.timeline.line-5 .time-container::before, .timeline.line-5 .time-container::after {
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
.timeline.line-5 .time-container::before {
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
right: -3.1rem;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.timeline.line-5 .time-container::after {
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
right: 0;
|
||||
-webkit-transform: translateY(-50%) translateX(2.1rem) rotate(45deg);
|
||||
transform: translateY(-50%) translateX(2.1rem) rotate(45deg);
|
||||
}
|
||||
|
||||
.timeline.line-5 .main-line {
|
||||
width: 0.2rem;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
.timeline.body-2 .info, .timeline.body-3 .info, .timeline.body-4 .info {
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.timeline.body-2 .info::after, .timeline.body-3 .info::after, .timeline.body-4 .info::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.timeline.body-2 .info, .timeline.body-4 .info {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.timeline.body-2 .time-container, .timeline.body-4 .time-container {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.timeline.body-2 .info {
|
||||
border-radius: 1.5rem;
|
||||
}
|
||||
|
||||
.timeline.body-3 .info {
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
.timeline.body-3 .info .title {
|
||||
position: relative;
|
||||
background: var(--timeline-active-color);
|
||||
padding: 0 1.5rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.timeline.body-3 .info .title::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 2rem;
|
||||
background: var(--timeline-active-color);
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: -1rem;
|
||||
-webkit-clip-path: polygon(1rem 0, 100% 0, 100% 100%, 1rem 100%, 0 50%);
|
||||
clip-path: polygon(1rem 0, 100% 0, 100% 100%, 1rem 100%, 0 50%);
|
||||
}
|
||||
|
||||
.timeline.body-3 .info .description {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.timeline.body-4 .info {
|
||||
border-left: 0.3rem solid var(--timeline-active-color);
|
||||
}
|
||||
|
||||
.timeline.spaced-lines .description p {
|
||||
line-height: 1.7rem;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
--timeline-active-color: var(--background-modifier-success);
|
||||
}
|
||||
|
||||
.timeline.active-color-background-modifier-success {
|
||||
--timeline-active-color: var(--background-modifier-success);
|
||||
}
|
||||
|
||||
.timeline.active-color-background-modifier-error {
|
||||
--timeline-active-color: var(--background-modifier-error);
|
||||
}
|
||||
|
||||
.timeline.active-color-background-modifier-error-hover {
|
||||
--timeline-active-color: var(--background-modifier-error-hover);
|
||||
}
|
||||
|
||||
.timeline.active-color-text-accent {
|
||||
--timeline-active-color: var(--text-accent);
|
||||
}
|
||||
|
||||
.timeline.active-color-text-accent-hover {
|
||||
--timeline-active-color: var(--text-accent-hover);
|
||||
}
|
||||
|
||||
.timeline.active-color-text-error {
|
||||
--timeline-active-color: var(--text-error);
|
||||
}
|
||||
|
||||
.timeline.active-color-text-error-hover {
|
||||
--timeline-active-color: var(--text-error-hover);
|
||||
}
|
||||
|
||||
.timeline.active-color-text-selection {
|
||||
--timeline-active-color: var(--text-selection);
|
||||
}
|
||||
|
||||
.timeline.active-color-interactive-accent {
|
||||
--timeline-active-color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
.timeline.active-color-interactive-accent-hover {
|
||||
--timeline-active-color: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
.timeline.active-color-interactive-success {
|
||||
--timeline-active-color: var(--interactive-success);
|
||||
}
|
||||
|
||||
.timeline {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-ms-grid-columns: auto auto 1fr;
|
||||
grid-template-columns: auto auto 1fr;
|
||||
-webkit-column-gap: 1.5rem;
|
||||
column-gap: 1.5rem;
|
||||
row-gap: 4.5rem;
|
||||
margin: 2.3rem 0;
|
||||
}
|
||||
|
||||
.timeline .time *, .timeline .title * {
|
||||
font-size: 1.3rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.timeline .time-container {
|
||||
-ms-grid-column: 1;
|
||||
-ms-grid-column-span: 1;
|
||||
grid-column: 1 / span 1;
|
||||
position: relative;
|
||||
-ms-flex-item-align: start;
|
||||
-ms-grid-row-align: start;
|
||||
align-self: start;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.timeline .time-container::before, .timeline .time-container::after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 0.5rem;
|
||||
right: -2rem;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.timeline .time-container::before {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
.timeline .time-container::after {
|
||||
background-color: var(--text-normal);
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
.timeline .info {
|
||||
position: relative;
|
||||
-ms-grid-column: 3;
|
||||
-ms-grid-column-span: 1;
|
||||
grid-column: 3 / span 1;
|
||||
}
|
||||
|
||||
.timeline .info .title {
|
||||
margin-bottom: 0.86667rem;
|
||||
}
|
||||
|
||||
.timeline .info::after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
border-bottom: 0.1rem dashed var(--text-normal);
|
||||
opacity: 0.1;
|
||||
width: 100%;
|
||||
height: 2.25rem;
|
||||
}
|
||||
|
||||
.timeline .info:last-child::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.timeline .main-line {
|
||||
height: 100%;
|
||||
width: 0.5rem;
|
||||
-ms-grid-column: 2;
|
||||
-ms-grid-column-span: 1;
|
||||
grid-column: 2 / span 1;
|
||||
-ms-grid-row: 1;
|
||||
grid-row-start: 1;
|
||||
background-color: var(--text-normal);
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
.timeline .time-container .time > *:first-child, .timeline .time-container .time > *:last-child, .timeline .info .title > *:first-child, .timeline .info .title > *:last-child, .timeline .info .description > *:first-child, .timeline .info .description > *:last-child {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,10 +1,10 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "1.8.1",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "0.11.13",
|
||||
"author": "SilentVoid",
|
||||
"authorUrl": "https://github.com/SilentVoid13",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "1.9.8",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "0.11.13",
|
||||
"author": "SilentVoid",
|
||||
"authorUrl": "https://github.com/SilentVoid13",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
@ -1,256 +1,266 @@
|
||||
.templater_div {
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.templater_div > .setting-item {
|
||||
border-top: none !important;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_div > .setting-item > .setting-item-control {
|
||||
justify-content: space-around;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.templater_div > .setting-item > .setting-item-control > .setting-editor-extra-setting-button {
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_title {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-top: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.templater_template {
|
||||
align-self: center;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.templater_cmd {
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
font-size: 14px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.templater_div2 > .setting-item {
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.templater_button:hover {
|
||||
background-color: #00496A !important;
|
||||
}
|
||||
|
||||
.templater-prompt-div {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.templater-prompt-form {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.templater-prompt-input {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.cm-s-obsidian .templater-command-bg {
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command{
|
||||
color: #d4d4d4;
|
||||
font-size: 0.85em;
|
||||
font-family: var(--font-monospace);
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .templater-inline .cm-templater-command {
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-opening-tag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-closing-tag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
|
||||
color: #008BFF;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
|
||||
color: #C0D700;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-raw-tag {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||
color: #00A7AA;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-atom {
|
||||
color: #F39B35;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-number {
|
||||
color: #A06FCA;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-type {
|
||||
color: #A06FCA;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-def {
|
||||
color: #98E342;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-property {
|
||||
color: #D4D4D4;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-variable {
|
||||
color: #D4D4D4;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-variable-2 {
|
||||
color: #da7dae;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-variable-3 {
|
||||
color: #A06FCA;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-type.cm-def {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-property.cm-def {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-callee {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-operator {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-qualifier {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-tag {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-tag.cm-bracket {
|
||||
color: #D4D4D4;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-attribute {
|
||||
color: #A06FCA;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-comment {
|
||||
color: #696d70;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-comment.cm-tag {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
|
||||
color: #D4D4D4;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-string {
|
||||
color: #E6DB74;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-string-2 {
|
||||
color: #F39B35;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-meta {
|
||||
color: #D4D4D4;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-builtin {
|
||||
color: #FC4384;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-header {
|
||||
color: #da7dae;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-hr {
|
||||
color: #98E342;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-link {
|
||||
color: #696d70;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-error {
|
||||
border-bottom: 1px solid #C42412;
|
||||
}
|
||||
|
||||
|
||||
.cm-s-obsidian pre.HyperMD-codeblock .cm-keyword {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.CodeMirror-activeline-background {
|
||||
background: #272727;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.CodeMirror-matchingbracket {
|
||||
outline: 1px solid grey;
|
||||
color: #D4D4D4 !important;
|
||||
}
|
||||
.templater_search {
|
||||
width: calc(100% - 20px);
|
||||
}
|
||||
|
||||
.templater_div {
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.templater_div > .setting-item {
|
||||
border-top: none !important;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_div > .setting-item > .setting-item-control {
|
||||
justify-content: space-around;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.templater_div
|
||||
> .setting-item
|
||||
> .setting-item-control
|
||||
> .setting-editor-extra-setting-button {
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_title {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-top: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.templater_template {
|
||||
align-self: center;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.templater_cmd {
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
font-size: 14px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.templater_div2 > .setting-item {
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.templater-prompt-div {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.templater-prompt-form {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.templater-prompt-input {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .templater-command-bg {
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command {
|
||||
font-size: 0.85em;
|
||||
font-family: var(--font-monospace);
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .templater-inline .cm-templater-command {
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-opening-tag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-closing-tag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
|
||||
color: #008bff;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
|
||||
color: #c0d700;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-raw-tag {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||
color: #00a7aa;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-atom {
|
||||
color: #f39b35;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-number {
|
||||
color: #a06fca;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-type {
|
||||
color: #a06fca;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-def {
|
||||
color: #98e342;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-property {
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable {
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable-2 {
|
||||
color: #da7dae;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable-3 {
|
||||
color: #a06fca;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-type.cm-def {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-property.cm-def {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-callee {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-operator {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-qualifier {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-tag {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-tag.cm-bracket {
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-attribute {
|
||||
color: #a06fca;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment {
|
||||
color: #696d70;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment.cm-tag {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-string {
|
||||
color: #e6db74;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-string-2 {
|
||||
color: #f39b35;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-meta {
|
||||
color: #d4d4d4;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-builtin {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-header {
|
||||
color: #da7dae;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-hr {
|
||||
color: #98e342;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-link {
|
||||
color: #696d70;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-error {
|
||||
border-bottom: 1px solid #c42412;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian pre.HyperMD-codeblock .cm-keyword {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.theme-dark
|
||||
.cm-s-obsidian
|
||||
.cm-templater-command.CodeMirror-activeline-background {
|
||||
background: #272727;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.CodeMirror-matchingbracket {
|
||||
outline: 1px solid grey;
|
||||
color: #d4d4d4 !important;
|
||||
}
|
||||
|
||||
.CodeMirror-hints {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
overflow: hidden;
|
||||
list-style: none;
|
||||
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
|
||||
-webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||
border-radius: 3px;
|
||||
border: 1px solid silver;
|
||||
|
||||
background: white;
|
||||
font-size: 90%;
|
||||
font-family: monospace;
|
||||
|
||||
max-height: 20em;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.CodeMirror-hint {
|
||||
margin: 0;
|
||||
padding: 0 4px;
|
||||
border-radius: 2px;
|
||||
white-space: pre;
|
||||
color: black;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
li.CodeMirror-hint-active {
|
||||
background: #08f;
|
||||
color: white;
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,146 @@
|
||||
---
|
||||
|
||||
Alias: ["Family organisation"]
|
||||
Tag: ["Personal", "Family"]
|
||||
Date: 2021-10-01
|
||||
DocType: "Personal"
|
||||
Hierarchy: "Root"
|
||||
CollapseMetaTable: Yes
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[Family]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Create New Note
|
||||
type note(New Note) template
|
||||
action Template Note
|
||||
id NewNote
|
||||
```
|
||||
^button-FamilyNewNote
|
||||
|
||||
```button
|
||||
name Create New Source
|
||||
type note(New Source) template
|
||||
action Template Source
|
||||
id NewNote
|
||||
```
|
||||
^button-FamilyNewSource
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-FOSave
|
||||
|
||||
 
|
||||
|
||||
# Folder map
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
This note enables to navigate in the Family section and find any Note in this Vault by Note or Tag
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Master Navigation
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table Date as "Creation Date" from "Family"
|
||||
Sort Date ascending
|
||||
```
|
||||
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### High Level tasks
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes Family
|
||||
description does not include :gift:
|
||||
description does not include :birthday:
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Next 5 birthdays
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes Family
|
||||
description includes :birthday:
|
||||
limit to 5 tasks
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Tag Navigation
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table without id tags as "Tags" From "Family"
|
||||
Flatten file.tags as tags
|
||||
Group by tags
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### TimeStamp check
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table TimeStamp as "Time Stamp" from "Family"
|
||||
Where TimeStamp > date(today) - dur(100 years)
|
||||
Sort TimeStamp ascending
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,115 @@
|
||||
---
|
||||
|
||||
Tag: ["Family", "Dad", "Chapal", "Place"]
|
||||
Date: 2021-09-30
|
||||
DocType: "Personal"
|
||||
Hierarchy: "Root2"
|
||||
TimeStamp:
|
||||
CollapseMetaTable: Yes
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[Family]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-TNSave
|
||||
|
||||
 
|
||||
|
||||
# Basville
|
||||
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
Basville, life and adventures
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Lieux de visite
|
||||
|
||||
 
|
||||
|
||||
#### Famille
|
||||
|
||||
1. Thyx -> Cousins
|
||||
2. Chardot
|
||||
|
||||
 
|
||||
|
||||
#### Tourisme
|
||||
|
||||
1. Aubusson
|
||||
1. Musée de la Tapisserie
|
||||
2. Manufacture St-Jean
|
||||
3. Chateau
|
||||
2. Felletin
|
||||
1. Michel Pinton / Nicolas Pinton (HEC meme année que Thomas BV)
|
||||
3. St-Georges Nigremont
|
||||
1. Belvédere + église
|
||||
2. Bouquin de Georges Nigremont (Jeantou, Masson creusois)
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Vie de creuse
|
||||
|
||||
 
|
||||
|
||||
#### August 2021: Porcherie à Giat
|
||||
|
||||
|
||||
##### Points saillants
|
||||
|
||||
1. Usage intensif de l'eau
|
||||
2. Pollution
|
||||
3. Exonomiquement pas viable
|
||||
|
||||
|
||||
##### Business plan
|
||||
|
||||
Résultat après annuité: €21,054 p.a.
|
||||
Cout de crédit: €14,614.46 p.a.
|
||||
Résultat net après coûts financiers: €6,439.54 p.a.
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Archives
|
||||
|
||||
 
|
||||
|
||||
[https://www.archives-genealogiques.com/dept.php?dept=87](https://www.archives-genealogiques.com/dept.php?dept=87)
|
||||
|
||||
|
||||
[http://www.cd-traiteur.fr/index.php/des-sites-d-exceptions/item/18-chateau-teyssier-de-savy](http://www.cd-traiteur.fr/index.php/des-sites-d-exceptions/item/18-chateau-teyssier-de-savy)
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,145 @@
|
||||
---
|
||||
|
||||
Tag: ["Family", "Birthday"]
|
||||
Date: 2021-10-01
|
||||
DocType: "Personal"
|
||||
Hierarchy: Root2
|
||||
TimeStamp:
|
||||
CollapseMetaTable: Yes
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[@Family organisation|Family organisation]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-BirthdaySave
|
||||
|
||||
 
|
||||
|
||||
# Birthdays
|
||||
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
Family birthdays
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Family
|
||||
|
||||
 
|
||||
|
||||
- [ ] :birthday: **Papa** 🔁 every year 📅 2022-08-30
|
||||
- [x] :birthday: Papa 🔁 every year 📅 2021-08-30 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Maman** 🔁 every year 📅 2022-09-04
|
||||
- [x] :birthday: Maman 🔁 every year 📅 2021-09-04 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Noémie** 🔁 every year 📅 2022-06-20
|
||||
- [x] :birthday: Noémie 🔁 every year 📅 2021-06-20 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Marguerite** 🔁 every year 📅 2022-05-02
|
||||
- [x] :birthday: Marguerite 🔁 every year 📅 2021-05-02 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Éloi** 🔁 every year 📅 2022-05-09
|
||||
- [x] :birthday: Éloi 🔁 every year 📅 2021-05-09 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Opportune** 🔁 every year 📅 2022-07-14
|
||||
- [x] :birthday: Opportune 🔁 every year 📅 2021-07-14 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Philomène** 🔁 every year 📅 2022-04-18
|
||||
- [x] :birthday: Philomène 🔁 every year 📅 2021-04-18 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Aglaé** 🔁 every year 📅 2022-02-25
|
||||
- [x] :birthday: Aglaé 🔁 every year 📅 2021-02-25 ✅ 2021-10-01
|
||||
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Le Bastart
|
||||
|
||||
 
|
||||
|
||||
#### Noémie
|
||||
|
||||
- [ ] :birthday: **Séraphine** 🔁 every year 📅 2021-11-27
|
||||
|
||||
 
|
||||
|
||||
#### Évrard
|
||||
|
||||
- [ ] :birthday: **Évrard** 🔁 every year 📅 2021-10-14
|
||||
- [ ] :birthday: **Hortense BV** 🔁 every year 📅 2022-02-27
|
||||
- [ ] :birthday: **Marc BV** 🔁 every year 📅 2021-12-04
|
||||
- [ ] :birthday: **Quentin BV** 🔁 every year 📅 2022-04-21
|
||||
- [ ] :birthday: **Armand BV** 🔁 every year 📅 2022-01-03
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Bédier
|
||||
|
||||
 
|
||||
|
||||
- [ ] :birthday: **Bon Papa** 🔁 every year 📅 2021-12-07
|
||||
- [ ] :birthday: **Bonne Maman** 🔁 every year 📅 2022-07-13
|
||||
|
||||
 
|
||||
|
||||
#### Jérôme
|
||||
|
||||
- [ ] :birthday: **Jérôme** 🔁 every year 📅 2022-01-14
|
||||
- [ ] :birthday: **Joséphine** 🔁 every year 📅 2022-01-21
|
||||
- [ ] :birthday: **Louis** 🔁 every year 📅 2022-03-31
|
||||
- [ ] :birthday: **Élise** 🔁 every year 📅 2022-02-28
|
||||
|
||||
 
|
||||
|
||||
#### Christophe
|
||||
|
||||
- [ ] :birthday: **Hortense** 🔁 every year 📅 2022-05-19
|
||||
- [ ] :birthday: **Olympe** 🔁 every year 📅 2021-10-14
|
||||
- [ ] :birthday: **Achille** 🔁 every year 📅 2022-04-20
|
||||
- [ ] :birthday: **Isaure** 🔁 every year 📅 2022-04-21
|
||||
|
||||
 
|
||||
|
||||
#### Hortense
|
||||
|
||||
- [ ] :birthday: **Thaïs** 🔁 every year 📅 2022-02-06
|
||||
|
||||
 
|
||||
|
||||
#### Charles
|
||||
|
||||
- [ ] :birthday: **Ophélie** 🔁 every year 📅 2022-09-05
|
||||
- [ ] :birthday: **Hilaire** 🔁 every year 📅 2022-08-26
|
||||
- [ ] :birthday: **Auguste** 🔁 every year 📅 2022-09-30
|
||||
- [x] :birthday: **Auguste** 🔁 every year 📅 2021-09-30 ✅ 2021-10-01
|
||||
- [ ] :birthday: **Eustache** 🔁 every year 📅 2021-12-08
|
||||
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,185 @@
|
||||
---
|
||||
|
||||
Tag: ["Personal", "Family"]
|
||||
Date: 2021-10-01
|
||||
DocType: "Task"
|
||||
Hierarchy: Root2
|
||||
Priority: High
|
||||
Status: In-progress
|
||||
StartDate: 2021-10-01
|
||||
DueDate: 2021-12-31
|
||||
NextReviewDate: 2021-11-01
|
||||
TimeStamp: 2021-10-01
|
||||
|
||||
---
|
||||
|
||||
Parent:: [[@Life Organisation|Life Orga]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Edit Task parameters
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-FamilyTaskEdit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-FamilySave
|
||||
|
||||
 
|
||||
|
||||
# Family
|
||||
|
||||
 
|
||||
|
||||
```ad-abstract
|
||||
title: Summary
|
||||
collapse: open
|
||||
Task master for everything relating to family.
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Next 5 birthdays
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes Family
|
||||
description includes :birthday:
|
||||
limit to 5 tasks
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### To-dos
|
||||
|
||||
 
|
||||
|
||||
- [ ] Re-start dialogue
|
||||
|
||||
 
|
||||
|
||||
**[[@Investment Task master|Investments]]**
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes Investments/
|
||||
description includes Ta
|
||||
is not recurring
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
**[[hLedger]]**
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes hLedger
|
||||
is not recurring
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Recurring sub-Tasks
|
||||
|
||||
**[[@Investment Task master|Investments]]**
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes Investments
|
||||
description includes Ta
|
||||
is recurring
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
**[[hLedger]]**
|
||||
|
||||
```tasks
|
||||
not done
|
||||
path includes hLedger
|
||||
is recurring
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Completed tasks
|
||||
|
||||
 
|
||||
|
||||
**[[@Investment Task master|Investments]]**
|
||||
|
||||
```tasks
|
||||
done
|
||||
path includes Investments
|
||||
description includes Ta
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
**[[hLedger]]**
|
||||
|
||||
```tasks
|
||||
done
|
||||
path includes hLedger
|
||||
sort by due
|
||||
hide backlink
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### Dependencies
|
||||
|
||||
|
||||
 
|
||||
 
|
Loading…
Reference in new issue