Update macros-daily-template.md

This commit is contained in:
JamesCliffordSpratt 2025-05-21 14:40:52 +01:00 committed by GitHub
parent 9e02318ca9
commit 752c2f5501
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,16 +4,14 @@
id: <% tp.date.now("YYYY-MM-DD") %>
```
## 📊 Pie Chart
### Todays Macros:
### 📊 Pie Chart
```macrospc
id: <% tp.date.now("YYYY-MM-DD") %>
```
### 📅 Weekly Overview:
## 📅 Weekly Overview
### Summary Table
```macroscalc
ids: <%*
let days = [];
@ -23,7 +21,7 @@ for (let x = 6; x >= 0; x--) {
tR += days.join(", ");
%>
```
### 📊 Pie Chart
```macrospc
ids: <%*
let dayspc = [];
@ -32,4 +30,4 @@ for (let i = 6; i >= 0; i--) {
}
tR += dayspc.join(", ");
%>
```
```