diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 989d59a..5993969 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -1257,7 +1257,7 @@ Functions can be template functions and sets of functions can be classes or clas
* (Simple) A function should not make control-flow decisions based on the values of variables declared at namespace scope.
* (Simple) A function should not write to variables declared at namespace scope.
-### I.2 Avoid global variables
+### I.2: Avoid global variables
##### Reason
@@ -4225,7 +4225,7 @@ Concrete type rule summary:
* [C.10: Prefer concrete types over class hierarchies](#Rc-concrete)
* [C.11: Make concrete types regular](#Rc-regular)
-### C.10 Prefer concrete types over class hierarchies
+### C.10: Prefer concrete types over class hierarchies
##### Reason
@@ -18446,9 +18446,9 @@ This section contains ideas about higher-level architectural ideas and libraries
Architectural rule summary:
-* [A.1 Separate stable from less stable part of code](#Ra-stable)
-* [A.2 Express potentially reusable parts as a library](#Ra-lib)
-* [A.4 There should be no cycles among libraries](#?Ra-dag)
+* [A.1: Separate stable from less stable part of code](#Ra-stable)
+* [A.2: Express potentially reusable parts as a library](#Ra-lib)
+* [A.4: There should be no cycles among libraries](#?Ra-dag)
* [???](#???)
* [???](#???)
* [???](#???)
@@ -18456,11 +18456,11 @@ Architectural rule summary:
* [???](#???)
* [???](#???)
-### A.1 Separate stable from less stable part of code
+### A.1: Separate stable from less stable part of code
???
-### A.2 Express potentially reusable parts as a library
+### A.2: Express potentially reusable parts as a library
##### Reason
@@ -18471,7 +18471,7 @@ A library could be a set of headers (a "header only library") or a set of header
A library can be statically or dynamically linked into a program, or it may be `#included`
-### A.4 There should be no cycles among libraries
+### A.4: There should be no cycles among libraries
##### Reason
@@ -19729,7 +19729,7 @@ Always indenting the statement after `if (...)`, `for (...)`, and `while (...)`
Use a tool.
-### NL.5 Don't encode type information in names
+### NL.5: Don't encode type information in names
##### Rationale