1
0
Fork 0

chore(markdown): Added notes to title macro example

This commit is contained in:
joostdecock 2024-01-07 17:16:17 +01:00
parent a8e6f39abb
commit b081da324b

View file

@ -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
}