From b081da324b8b798b047fb72fcc6bc2faff030a1e Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 7 Jan 2024 17:16:17 +0100 Subject: [PATCH] chore(markdown): Added notes to title macro example --- markdown/dev/reference/macros/title/en.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/markdown/dev/reference/macros/title/en.md b/markdown/dev/reference/macros/title/en.md index a2abe175ab9..30186593dc7 100644 --- a/markdown/dev/reference/macros/title/en.md +++ b/markdown/dev/reference/macros/title/en.md @@ -46,15 +46,25 @@ macro('title', { store.set('data.for', 'Sorcha') macro('title', { - nr: 9, - title: 'The title', - at: new Point(0,0) + nr: 8, + title: 'The Title', + at: new Point(0,0), + brand: 'Bazooka Crew', + notes: [ + "You can use any brand you want", + "\n", + "but if you plan to contribute your", + "\n", + "design, you should use the default", + "\n", + "(btw: These are the notes)" + ] }) // Prevent clipping paths.diag = new Path() .move(new Point(-20,-50)) - .move(new Point(120,35)) + .move(new Point(120,55)) return part }