From 3495a9b7e1b88a65e60d508dd398244fb534d5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gir=C3=A3o=20Serr=C3=A3o?= <5621605+rodrigogiraoserrao@users.noreply.github.com> Date: Thu, 22 Dec 2022 11:26:04 +0000 Subject: [PATCH] Add template files for consistency. --- docs/css_types/_template.md | 40 ++++++++ docs/snippets/type_syntax/_template.md | 39 ++++++++ docs/styles/_template.md | 128 +++++++++++++++++++++++++ 3 files changed, 207 insertions(+) create mode 100644 docs/css_types/_template.md create mode 100644 docs/snippets/type_syntax/_template.md create mode 100644 docs/styles/_template.md diff --git a/docs/css_types/_template.md b/docs/css_types/_template.md new file mode 100644 index 000000000..c9fe058d4 --- /dev/null +++ b/docs/css_types/_template.md @@ -0,0 +1,40 @@ + + +# <type-name> + + + +## Syntax + + + +## Examples + +### CSS + + + +```sass +* { + rule: type-value-1; + rule: type-value-2; + rule: type-value-3; +} +``` + +### Python + + + +```py +type_name = type_value_1 +type_name = type_value_2 +type_name = type_value_3 +``` diff --git a/docs/snippets/type_syntax/_template.md b/docs/snippets/type_syntax/_template.md new file mode 100644 index 000000000..77697f721 --- /dev/null +++ b/docs/snippets/type_syntax/_template.md @@ -0,0 +1,39 @@ + + + + + + + diff --git a/docs/styles/_template.md b/docs/styles/_template.md new file mode 100644 index 000000000..8d2e61271 --- /dev/null +++ b/docs/styles/_template.md @@ -0,0 +1,128 @@ + + +# Rule-name + + + +## Syntax + +--8<-- "docs/snippets/syntax_block_start.md" + +--8<-- "docs/snippets/syntax_block_end.md" + + + +### Values + + + + + +### Defaults + + + +## Examples + + + + + + + +## CSS + + + +## Python + +