[CORD-2585]
Lint check documentation with markdownlint
Change-Id: I692660818730aa0838492eb8a62d689e3fccc54d
diff --git a/docs/scripts/defaults.md.j2 b/docs/scripts/defaults.md.j2
index 04738cb..35e8d29 100644
--- a/docs/scripts/defaults.md.j2
+++ b/docs/scripts/defaults.md.j2
@@ -1,22 +1,21 @@
# Build System Config Glossary
-{{ def_docs['frontmatter']['description'] }}
-
+{{ frontmatter }}
{% for key, val in def_docs|dictsort %}
-### {{ key }}
-
+## {{ key }}
+{% if val['description'] != ''%}
{{ val['description'] }}
-
+{% endif %}
Default value:
-```
+
+```yaml
{{ val['defval_pp'] }}
```
Used in:
{% for file in val['reflist']|sort(attribute='path') -%}
- - [{{ file.path }}]({{ file.link }})
+- [{{ file.path }}]({{ file.link }})
{% endfor -%}
-
{% endfor %}