about summary refs log tree commit diff
path: root/doc/languages-frameworks/cuelang.section.md
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2023-03-27 22:39:11 +0200
committerpennae <github@quasiparticle.net>2023-03-27 22:39:11 +0200
commit052bb41410760535a5360cbb591cb54d538c2bcd (patch)
tree12f33c0a54370b9d9e2ec9201e1770c0763e7d28 /doc/languages-frameworks/cuelang.section.md
parent4bb072f0a8b267613c127684e099a70e1f6ff106 (diff)
downloadnixlib-052bb41410760535a5360cbb591cb54d538c2bcd.tar
nixlib-052bb41410760535a5360cbb591cb54d538c2bcd.tar.gz
nixlib-052bb41410760535a5360cbb591cb54d538c2bcd.tar.bz2
nixlib-052bb41410760535a5360cbb591cb54d538c2bcd.tar.lz
nixlib-052bb41410760535a5360cbb591cb54d538c2bcd.tar.xz
nixlib-052bb41410760535a5360cbb591cb54d538c2bcd.tar.zst
nixlib-052bb41410760535a5360cbb591cb54d538c2bcd.zip
doc: assign ids to many headings
without stable ids on headings we cannot generate stable links to these
headings. nrd complains about this, but the current docbook workflow
does not.

a few generated ids remain, mostly in examples and footnotes. most of
the examples are generated by nixdoc (which has since gained MD export
functions, and the MD export does generate IDs).
Diffstat (limited to 'doc/languages-frameworks/cuelang.section.md')
-rw-r--r--doc/languages-frameworks/cuelang.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/cuelang.section.md b/doc/languages-frameworks/cuelang.section.md
index ef408c7bb19b..86304208aa20 100644
--- a/doc/languages-frameworks/cuelang.section.md
+++ b/doc/languages-frameworks/cuelang.section.md
@@ -7,7 +7,7 @@
 - do configuration akin to [Dhall Lang](https://dhall-lang.org/)
 - perform data validation
 
-## Cuelang schema quick start
+## Cuelang schema quick start {#cuelang-quickstart}
 
 Cuelang schemas are similar to JSON, here is a quick cheatsheet:
 
@@ -21,7 +21,7 @@ Cuelang schemas are similar to JSON, here is a quick cheatsheet:
 - Read <https://cuelang.org/docs/concepts/logic/> to learn more about the semantics.
 - Read <https://cuelang.org/docs/references/spec/> to learn about the language specification.
 
-## `writeCueValidator`
+## `writeCueValidator` {#cuelang-writeCueValidator}
 
 Nixpkgs provides a `pkgs.writeCueValidator` helper, which will write a validation script based on the provided Cuelang schema.