imalightbulb
12/15/2020, 11:20 AMuser
12/15/2020, 11:23 AMimalightbulb
12/15/2020, 11:23 AMuser
12/15/2020, 11:24 AMimalightbulb
12/15/2020, 11:24 AMimalightbulb
12/15/2020, 11:24 AMuser
12/15/2020, 11:24 AMimalightbulb
12/15/2020, 11:24 AMimalightbulb
12/15/2020, 11:25 AMimalightbulb
12/15/2020, 11:25 AMimalightbulb
12/15/2020, 11:26 AMnamespace: true in the day section, this schema works perfectly after the deletion of that lineuser
12/15/2020, 11:50 AMfudo
12/15/2020, 11:50 AMuser
12/15/2020, 12:02 PMuser
12/15/2020, 12:28 PMuser
12/15/2020, 12:47 PMfudo
12/15/2020, 1:04 PMuser
12/15/2020, 1:06 PMversion: 1
schemas:
- id: work
title: work
desc: "Daily Note"
parent: root
children: [note, saas, zone, training]
- id: note
parent: work
title: My Note
children: [year]
- id: saas
parent: work
title: SaaS Stuff
children: [year]
- id: zone
title: Zone
children: [year]
- id: training
title: Training
children: [year]
# This is a long date
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children: [month]
- id: month
parent: year
title: month
pattern: "[0-9][0-9]"
children: [day]
- id: day
parent: month
title: day
pattern: "[0-9][0-9]"
children: [text]
# The end of the note
- id: text
parent: day
title: textfudo
12/15/2020, 1:08 PMuser
12/15/2020, 1:11 PMfudo
12/15/2020, 1:18 PMuser
12/15/2020, 1:19 PMuser
12/15/2020, 1:41 PMversion: 1
imports:
- date
schemas:
- id: work
title: work
desc: "Daily Note"
parent: root
children: [note, saas]
- id: note
parent: work
title: My Note
children:
- date.date
- id: saas
parent: work
title: SaaS Notes
children:
- date.date
then date.schema.yml:
# This is a long date
version: 1
schemas:
- id: date
title: year
pattern: "[0-2][0-9][0-9][0-9]"
parent: root
children:
- month
- id: month
parent: date
title: month
pattern: "[0-9][0-9]"
children:
- day
- id: day
parent: month
title: day
pattern: "[0-9][0-9]"
children:
- text
# The end of the note
- id: text
parent: day
title: textkevins8
12/15/2020, 4:38 PMpattern field π
this is a bug. could you file a bug report here so we can fix that going forward?
https://github.com/dendronhq/dendron/issues/new?assignees=&labels=&template=bug_report.md&title=user
12/16/2020, 12:30 AMuser
12/16/2020, 1:00 AMkevins8
12/16/2020, 4:24 AMuser
12/16/2020, 4:28 AMkevins8
12/16/2020, 4:50 AMhikchoi
12/16/2020, 5:03 AM