I'm trying to get more familiar with Dendron's use...
# questions
a
I'm trying to get more familiar with Dendron's user tags (https://wiki.dendron.so/notes/ESqOqSOEo54lqvGLlQXM6/). When I create a new user note, I'd like it to be built from a template. This is easy, I can create a schema + template and we're off. My template:
Copy code
yaml
---
id: fc3kbk6iivs6yyjtpuql2yd
title: User
desc: ""
updated: 1649180005198
created: 1649180005198
social:
  linkedin:
  twitter:
  facebook:
  discord:
  github:
  hn:
  website:
  email:
location:
employer:
team:
---
But, when I create the user, all of the blank values are filled in with `null`:
Copy code
yaml
---
id: bd4r9ooubx3fzykvfhzw5nj
title: Anthony Lukach
desc: ''
updated: 1649182168569
created: 1649182168569
social:
  linkedin: null
  twitter: null
  facebook: null
  discord: null
  github: null
  hn: null
  website: null
  email: null
location: null
employer: null
---
Is there any way to avoid this? Obviously, I could use some other filler like
''
, but I'd prefer those values to be unfilled rather than pre-populated with
''
or
null
.