summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.obsidian/plugins/dataview/data.json27
-rw-r--r--index.md9
2 files changed, 34 insertions, 2 deletions
diff --git a/.obsidian/plugins/dataview/data.json b/.obsidian/plugins/dataview/data.json
new file mode 100644
index 0000000..b2d08d0
--- /dev/null
+++ b/.obsidian/plugins/dataview/data.json
@@ -0,0 +1,27 @@
+{
+ "renderNullAs": "\\-",
+ "taskCompletionTracking": false,
+ "taskCompletionUseEmojiShorthand": false,
+ "taskCompletionText": "completion",
+ "taskCompletionDateFormat": "yyyy-MM-dd",
+ "recursiveSubTaskCompletion": false,
+ "warnOnEmptyResult": true,
+ "refreshEnabled": true,
+ "refreshInterval": 2500,
+ "defaultDateFormat": "MMMM dd, yyyy",
+ "defaultDateTimeFormat": "h:mm a - MMMM dd, yyyy",
+ "maxRecursiveRenderDepth": 4,
+ "tableIdColumnName": "File",
+ "tableGroupColumnName": "Group",
+ "showResultCount": true,
+ "allowHtml": true,
+ "inlineQueryPrefix": "=",
+ "inlineJsQueryPrefix": "$=",
+ "inlineQueriesInCodeblocks": true,
+ "enableInlineDataview": true,
+ "enableDataviewJs": true,
+ "enableInlineDataviewJs": true,
+ "prettyRenderInlineFields": true,
+ "prettyRenderInlineFieldsInLivePreview": true,
+ "dataviewJsKeyword": "dataviewjs"
+} \ No newline at end of file
diff --git a/index.md b/index.md
index a030f95..3a26f08 100644
--- a/index.md
+++ b/index.md
@@ -13,5 +13,10 @@ tags:
Dies ist ein Test. ^b9af36
-test:: 5
-<!-- IQ: =this.test + 3 -->8<!-- /IQ -->
+```dataviewjs
+const a = 5;
+const b = 6;
+
+dv.paragraph(`A = ${a}`);
+dv.paragraph(`B = ${b}`);
+```