[doc] Replaced Hugo links with standard markdown

A script, `util/check_links.py`, was written by Amaury
to automate most of the relinking.

Below are the commands run to perform the relinking.
Some moves had to be manually added to the move list,
because they were either not properly tracked by git
or to fix quirky behaviour of the script.

Note that command has to be run twice
because it can't handle non-bijective moves
and that it incorrectly re-links two files,
which are fixed in the final file.

```
git show --name-status HEAD~11..HEAD | grep '^R100' | sed 's/^R100\t//' > move_list.txt
echo "hw/dv/sv/dv_utils/doc/index.md hw/dv/sv/dv_utils/README.md" >> move_list.txt
echo "hw/dv/tools/doc/index.md hw/dv/tools/README.md" >> move_list.txt
echo "README.md doc/introduction.md" >> move_list.txt
echo "doc/project/checklist.md doc/project_governance/checklist/README.md" >> move_list.txt
./util/check_links.py . --ignore-book --move-list-file move_list.txt --apply

echo "hw/dv/tools/README.md util/dvsim/README.md" > move_list.txt
./util/check_links.py . --ignore-book --move-list-file move_list.txt --apply
git checkout HEAD -- SUMMARY.md hw/doc/cores.md
```

Signed-off-by: Hugo McNally <hugo.mcnally@gmail.com>
Co-authored-by: Amaury Pouly <amaury.pouly@lowrisc.org>
diff --git a/sw/device/README.md b/sw/device/README.md
index 5b5d43b..b152f68 100644
--- a/sw/device/README.md
+++ b/sw/device/README.md
@@ -9,14 +9,14 @@
 
 The Reference Firmware Images are, in boot order:
 
-1.  The [ROM]({{< relref "sw/device/silicon_creator/rom/docs" >}}) (in `sw/device/silicon_creator/rom`), executed at chip reset;
+1.  The [ROM](./silicon_creator/rom/README.md) (in `sw/device/silicon_creator/rom`), executed at chip reset;
 2.  The ROM_EXT (in `sw/device/silicon_creator/rom_ext`), the second stage Silicon Creator code, executed from flash; and
 
 ### Testing-only Images
 
 There are also some other standalone firmware images in the repository, which are only used for testing.
 
-- [`sw/device/tests`]({{< relref "sw/device/tests/index.md" >}}) contains several categories of chip-level tests, including smoke, IP integration, and system-level (use case) tests.
+- [`sw/device/tests`](./tests/README.md) contains several categories of chip-level tests, including smoke, IP integration, and system-level (use case) tests.
 
 - [`sw/device/benchmarks/coremark`](https://github.com/lowRISC/opentitan/tree/master/sw/device/benchmarks/coremark) contains infrastructure for running the [CoreMark](https://github.com/eembc/coremark) benchmark suite on the OpenTitan device.
 - `sw/device/riscv_compliance_support` contains infrastructure so we can run the [RISC-V Compliance](https://github.com/riscv/riscv-compliance) tests on the OpenTitan core.
diff --git a/sw/device/lib/README.md b/sw/device/lib/README.md
index 427c595..81292f8 100644
--- a/sw/device/lib/README.md
+++ b/sw/device/lib/README.md
@@ -14,14 +14,14 @@
     contains the Base Libraries, including
     [freestanding C library headers](https://github.com/lowRISC/opentitan/tree/master/sw/device/lib/base/freestanding).
     The Base Libraries are simple libraries that can be used by any other OpenTitan device software libraries.
--   [`sw/device/lib/dif`]({{< relref "sw/device/lib/dif" >}})
-    contains the [Device Interface Functions]({{< relref "doc/rm/device_interface_functions.md" >}}).
+-   [`sw/device/lib/dif`](./dif/README.md)
+    contains the [Device Interface Functions](../../../doc/contributing/sw/device_interface_functions.md).
 -   `sw/device/lib/arch` contains the libraries to be used on specific device
     configurations (for instance FPGA, Simulation, etc.).
 -   [`sw/device/lib/runtime`](https://github.com/lowRISC/opentitan/tree/master/sw/device/lib/runtime)
     contains general libraries for more advanced on-device functionality
     (including logging, printing, and interacting with the RISC-V core).
--   [`sw/device/lib/testing`]({{< relref "sw/device/lib/testing/_index.md" >}})
+-   [`sw/device/lib/testing`](./testing/README.md)
     contains test library code. Test library code is any (reusable) code that
     could aid in the writing of smoke, IP integration, or system-level tests,
     that is a layer of above the DIFs. In other words, this code may make use
diff --git a/sw/device/lib/dif/README.md b/sw/device/lib/dif/README.md
index 3b8c632..95290c1 100644
--- a/sw/device/lib/dif/README.md
+++ b/sw/device/lib/dif/README.md
@@ -56,7 +56,7 @@
 ## Checklists
 
 This directory also contains checklists for each DIF, in markdown format. They
-are linked to from the [Hardware Dashboard]({{< relref "hw" >}}), in the
+are linked to from the [Hardware Dashboard](../../../../hw/README.md), in the
 Development Stage column.
 
 ## DIF Style Guide
diff --git a/sw/device/lib/dif/dif_adc_ctrl.md b/sw/device/lib/dif/dif_adc_ctrl.md
index 8920507..91a3930 100644
--- a/sw/device/lib/dif/dif_adc_ctrl.md
+++ b/sw/device/lib/dif/dif_adc_ctrl.md
@@ -2,8 +2,8 @@
 title: "ADC Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [ADC Controller DIF]({{< relref "hw/ip/adc_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [ADC Controller DIF](../../../../hw/ip/adc_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,26 +15,26 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
 Type           | Item                             | Resolution  | Note/Collaterals
 ---------------|----------------------------------|-------------|------------------
-Coordination   | [DIF_HW_DESIGN_COMPLETE][]       | Not Started | [HW Dashboard]({{< relref "hw" >}})
-Coordination   | [DIF_HW_VERIFICATION_COMPLETE][] | Not Started | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_DESIGN_COMPLETE][]       | Not Started | [HW Dashboard](../../../../hw/README.md)
+Coordination   | [DIF_HW_VERIFICATION_COMPLETE][] | Not Started | [HW Dashboard](../../../../hw/README.md)
 Documentation  | [DIF_DOC_HW][]                   | Not Started |
 Code Quality   | [DIF_CODE_STYLE][]               | Not Started |
 Tests          | [DIF_TEST_UNIT][]                | Done        |
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_aes.md b/sw/device/lib/dif/dif_aes.md
index 87bfd41..de291ed 100644
--- a/sw/device/lib/dif/dif_aes.md
+++ b/sw/device/lib/dif/dif_aes.md
@@ -2,8 +2,8 @@
 title: "AES DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [AES DIF]({{< relref "hw/ip/aes/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [AES DIF](../../../../hw/ip/aes/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,26 +15,26 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
 Type           | Item                             | Resolution  | Note/Collaterals
 ---------------|----------------------------------|-------------|------------------
-Coordination   | [DIF_HW_DESIGN_COMPLETE][]       | Not Started | [HW Dashboard]({{< relref "hw" >}})
-Coordination   | [DIF_HW_VERIFICATION_COMPLETE][] | Not Started | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_DESIGN_COMPLETE][]       | Not Started | [HW Dashboard](../../../../hw/README.md)
+Coordination   | [DIF_HW_VERIFICATION_COMPLETE][] | Not Started | [HW Dashboard](../../../../hw/README.md)
 Documentation  | [DIF_DOC_HW][]                   | Not Started |
 Code Quality   | [DIF_CODE_STYLE][]               | Not Started |
 Tests          | [DIF_TEST_UNIT][]                | Not Started |
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_alert_handler.md b/sw/device/lib/dif/dif_alert_handler.md
index 0aec703..f48daeb 100644
--- a/sw/device/lib/dif/dif_alert_handler.md
+++ b/sw/device/lib/dif/dif_alert_handler.md
@@ -2,8 +2,8 @@
 title: "Alert Handler DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Alert Handler DIF]({{< relref "hw/top_earlgrey/ip_autogen/alert_handler/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Alert Handler DIF](../../../../hw/top_earlgrey/ip_autogen/alert_handler/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_aon_timer.md b/sw/device/lib/dif/dif_aon_timer.md
index 6038454..ad368e4 100644
--- a/sw/device/lib/dif/dif_aon_timer.md
+++ b/sw/device/lib/dif/dif_aon_timer.md
@@ -2,8 +2,8 @@
 title: "Always-On Timer DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Always-On Timer DIF]({{< relref "hw/ip/aon_timer/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Always-On Timer DIF](../../../../hw/ip/aon_timer/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_clkmgr.md b/sw/device/lib/dif/dif_clkmgr.md
index abe112c..6fb6346 100644
--- a/sw/device/lib/dif/dif_clkmgr.md
+++ b/sw/device/lib/dif/dif_clkmgr.md
@@ -2,8 +2,8 @@
 title: "Clock Manager DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Clock Manager DIF]({{< relref "hw/ip/clkmgr/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Clock Manager DIF](../../../../hw/ip/clkmgr/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_csrng.md b/sw/device/lib/dif/dif_csrng.md
index b40bc8b..650e082 100644
--- a/sw/device/lib/dif/dif_csrng.md
+++ b/sw/device/lib/dif/dif_csrng.md
@@ -2,8 +2,8 @@
 title: "CSRNG DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [CSRNG DIF]({{< relref "hw/ip/csrng/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [CSRNG DIF](../../../../hw/ip/csrng/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_edn.md b/sw/device/lib/dif/dif_edn.md
index 4c77f4b..09867a1 100644
--- a/sw/device/lib/dif/dif_edn.md
+++ b/sw/device/lib/dif/dif_edn.md
@@ -2,8 +2,8 @@
 title: "Entropy Distribution Network DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Entropy Distribution Network DIF]({{< relref "hw/ip/edn/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Entropy Distribution Network DIF](../../../../hw/ip/edn/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_entropy_src.md b/sw/device/lib/dif/dif_entropy_src.md
index 11f3d1c..1367d88 100644
--- a/sw/device/lib/dif/dif_entropy_src.md
+++ b/sw/device/lib/dif/dif_entropy_src.md
@@ -2,8 +2,8 @@
 title: "Entropy Source DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Entropy Source DIF]({{< relref "hw/ip/entropy_src/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Entropy Source DIF](../../../../hw/ip/entropy_src/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_flash_ctrl.md b/sw/device/lib/dif/dif_flash_ctrl.md
index 93fdd8d..0cd8da2 100644
--- a/sw/device/lib/dif/dif_flash_ctrl.md
+++ b/sw/device/lib/dif/dif_flash_ctrl.md
@@ -2,8 +2,8 @@
 title: "Flash Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Flash Controller DIF]({{< relref "hw/ip/flash_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Flash Controller DIF](../../../../hw/ip/flash_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_gpio.md b/sw/device/lib/dif/dif_gpio.md
index 89f0d94..d023030 100644
--- a/sw/device/lib/dif/dif_gpio.md
+++ b/sw/device/lib/dif/dif_gpio.md
@@ -2,8 +2,8 @@
 title: "GPIO DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [GPIO DIF]({{< relref "hw/ip/gpio/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [GPIO DIF](../../../../hw/ip/gpio/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_hmac.md b/sw/device/lib/dif/dif_hmac.md
index 7b55383..6b0480e 100644
--- a/sw/device/lib/dif/dif_hmac.md
+++ b/sw/device/lib/dif/dif_hmac.md
@@ -2,8 +2,8 @@
 title: "HMAC DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [HMAC DIF]({{< relref "hw/ip/hmac/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [HMAC DIF](../../../../hw/ip/hmac/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_i2c.md b/sw/device/lib/dif/dif_i2c.md
index 1ece3b8..8977800 100644
--- a/sw/device/lib/dif/dif_i2c.md
+++ b/sw/device/lib/dif/dif_i2c.md
@@ -2,8 +2,8 @@
 title: "I2C DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [I2C DIF]({{< relref "hw/ip/i2c/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [I2C DIF](../../../../hw/ip/i2c/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_keymgr.md b/sw/device/lib/dif/dif_keymgr.md
index 5aa4d08..af93d25 100644
--- a/sw/device/lib/dif/dif_keymgr.md
+++ b/sw/device/lib/dif/dif_keymgr.md
@@ -2,8 +2,8 @@
 title: "Key Manager DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Key Manager DIF]({{< relref "hw/ip/keymgr/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Key Manager DIF](../../../../hw/ip/keymgr/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_kmac.md b/sw/device/lib/dif/dif_kmac.md
index 0e46336..12cacfb 100644
--- a/sw/device/lib/dif/dif_kmac.md
+++ b/sw/device/lib/dif/dif_kmac.md
@@ -2,8 +2,8 @@
 title: "KMAC DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [KMAC DIF]({{< relref "hw/ip/kmac/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [KMAC DIF](../../../../hw/ip/kmac/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_lc_ctrl.md b/sw/device/lib/dif/dif_lc_ctrl.md
index a37a17f..4ede965 100644
--- a/sw/device/lib/dif/dif_lc_ctrl.md
+++ b/sw/device/lib/dif/dif_lc_ctrl.md
@@ -2,8 +2,8 @@
 title: "Lifecycle Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Lifecycle Controller DIF]({{< relref "hw/ip/lc_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Lifecycle Controller DIF](../../../../hw/ip/lc_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_otbn.md b/sw/device/lib/dif/dif_otbn.md
index 6193f99..0093c6f 100644
--- a/sw/device/lib/dif/dif_otbn.md
+++ b/sw/device/lib/dif/dif_otbn.md
@@ -2,8 +2,8 @@
 title: "OTBN DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [OTBN DIF]({{< relref "hw/ip/otbn/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [OTBN DIF](../../../../hw/ip/otbn/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_otp_ctrl.md b/sw/device/lib/dif/dif_otp_ctrl.md
index e424002..51ce7f3 100644
--- a/sw/device/lib/dif/dif_otp_ctrl.md
+++ b/sw/device/lib/dif/dif_otp_ctrl.md
@@ -2,8 +2,8 @@
 title: "OTP Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [OTP Controller DIF]({{< relref "hw/ip/otp_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [OTP Controller DIF](../../../../hw/ip/otp_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_pattgen.md b/sw/device/lib/dif/dif_pattgen.md
index 2c7b753..3f74bc4 100644
--- a/sw/device/lib/dif/dif_pattgen.md
+++ b/sw/device/lib/dif/dif_pattgen.md
@@ -2,8 +2,8 @@
 title: "Pattern Generator DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Pattern Generator DIF]({{< relref "hw/ip/pattgen/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Pattern Generator DIF](../../../../hw/ip/pattgen/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_pinmux.md b/sw/device/lib/dif/dif_pinmux.md
index 8d2bcc5..6440f06 100644
--- a/sw/device/lib/dif/dif_pinmux.md
+++ b/sw/device/lib/dif/dif_pinmux.md
@@ -2,8 +2,8 @@
 title: "Pin Multiplexer DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Pin Multiplexer DIF]({{< relref "hw/ip/pinmux/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Pin Multiplexer DIF](../../../../hw/ip/pinmux/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_pwm.md b/sw/device/lib/dif/dif_pwm.md
index c6a16b3..f911d0b 100644
--- a/sw/device/lib/dif/dif_pwm.md
+++ b/sw/device/lib/dif/dif_pwm.md
@@ -2,8 +2,8 @@
 title: "PWM DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [PWM DIF]({{< relref "hw/ip/pwm/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [PWM DIF](../../../../hw/ip/pwm/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_pwrmgr.md b/sw/device/lib/dif/dif_pwrmgr.md
index 6451b3c..51b60df 100644
--- a/sw/device/lib/dif/dif_pwrmgr.md
+++ b/sw/device/lib/dif/dif_pwrmgr.md
@@ -2,8 +2,8 @@
 title: "Power Manager DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Power Manager DIF]({{< relref "hw/ip/pwrmgr/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Power Manager DIF](../../../../hw/ip/pwrmgr/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_rom_ctrl.md b/sw/device/lib/dif/dif_rom_ctrl.md
index 01cba08..e585d7f 100644
--- a/sw/device/lib/dif/dif_rom_ctrl.md
+++ b/sw/device/lib/dif/dif_rom_ctrl.md
@@ -2,8 +2,8 @@
 title: "ROM Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [ROM Controller DIF]({{< relref "hw/ip/rom_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [ROM Controller DIF](../../../../hw/ip/rom_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_rstmgr.md b/sw/device/lib/dif/dif_rstmgr.md
index 2f6c05a..d58ddda 100644
--- a/sw/device/lib/dif/dif_rstmgr.md
+++ b/sw/device/lib/dif/dif_rstmgr.md
@@ -2,8 +2,8 @@
 title: "Reset Manager DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Reset Manager DIF]({{< relref "hw/ip/rstmgr/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Reset Manager DIF](../../../../hw/ip/rstmgr/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_rv_core_ibex.md b/sw/device/lib/dif/dif_rv_core_ibex.md
index b7c25ba..d8d3b22 100644
--- a/sw/device/lib/dif/dif_rv_core_ibex.md
+++ b/sw/device/lib/dif/dif_rv_core_ibex.md
@@ -2,8 +2,8 @@
 title: "Rv core ibex DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Rv core ibex DIF]({{< relref "hw/ip/rv_core_ibex/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Rv core ibex DIF](../../../../hw/ip/rv_core_ibex/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_rv_plic.md b/sw/device/lib/dif/dif_rv_plic.md
index 73cd4cf..3923d29 100644
--- a/sw/device/lib/dif/dif_rv_plic.md
+++ b/sw/device/lib/dif/dif_rv_plic.md
@@ -2,8 +2,8 @@
 title: "PLIC DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [PLIC DIF]({{< relref "hw/top_earlgrey/ip_autogen/rv_plic/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [PLIC DIF](../../../../hw/top_earlgrey/ip_autogen/rv_plic/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_rv_timer.md b/sw/device/lib/dif/dif_rv_timer.md
index 6b9fa55..d527ad4 100644
--- a/sw/device/lib/dif/dif_rv_timer.md
+++ b/sw/device/lib/dif/dif_rv_timer.md
@@ -2,8 +2,8 @@
 title: "RV Timer DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [RV Timer DIF]({{< relref "hw/ip/rv_timer/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [RV Timer DIF](../../../../hw/ip/rv_timer/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_sensor_ctrl.md b/sw/device/lib/dif/dif_sensor_ctrl.md
index 2791508..0aaf497 100644
--- a/sw/device/lib/dif/dif_sensor_ctrl.md
+++ b/sw/device/lib/dif/dif_sensor_ctrl.md
@@ -2,8 +2,8 @@
 title: "Sensor Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [Sensor Controller DIF]({{< relref "hw/top_earlgrey/ip/sensor_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [Sensor Controller DIF](../../../../hw/top_earlgrey/ip/sensor_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Not Started |
 Tests          | [DIF_TEST_ON_DEVICE][] | Not Started |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | In Progress |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_spi_device.md b/sw/device/lib/dif/dif_spi_device.md
index 10e011d..3a6d07a 100644
--- a/sw/device/lib/dif/dif_spi_device.md
+++ b/sw/device/lib/dif/dif_spi_device.md
@@ -2,8 +2,8 @@
 title: "SPI Device DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [SPI Device DIF]({{< relref "hw/ip/spi_device/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [SPI Device DIF](../../../../hw/ip/spi_device/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_spi_host.md b/sw/device/lib/dif/dif_spi_host.md
index 127edaf..d1f4429 100644
--- a/sw/device/lib/dif/dif_spi_host.md
+++ b/sw/device/lib/dif/dif_spi_host.md
@@ -2,8 +2,8 @@
 title: "SPI Host DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [SPI Host DIF]({{< relref "hw/ip/spi_host/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [SPI Host DIF](../../../../hw/ip/spi_host/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_sram_ctrl.md b/sw/device/lib/dif/dif_sram_ctrl.md
index ecf874d..2bf014d 100644
--- a/sw/device/lib/dif/dif_sram_ctrl.md
+++ b/sw/device/lib/dif/dif_sram_ctrl.md
@@ -2,8 +2,8 @@
 title: "SRAM Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [SRAM Controller DIF]({{< relref "hw/ip/sram_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [SRAM Controller DIF](../../../../hw/ip/sram_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_sysrst_ctrl.md b/sw/device/lib/dif/dif_sysrst_ctrl.md
index 34c6f37..51e70ad 100644
--- a/sw/device/lib/dif/dif_sysrst_ctrl.md
+++ b/sw/device/lib/dif/dif_sysrst_ctrl.md
@@ -2,8 +2,8 @@
 title: "System Reset Controller DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [System Reset Controller DIF]({{< relref "hw/ip/sysrst_ctrl/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [System Reset Controller DIF](../../../../hw/ip/sysrst_ctrl/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_uart.md b/sw/device/lib/dif/dif_uart.md
index 5edbb40..612f689 100644
--- a/sw/device/lib/dif/dif_uart.md
+++ b/sw/device/lib/dif/dif_uart.md
@@ -2,8 +2,8 @@
 title: "UART DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [UART DIF]({{< relref "hw/ip/uart/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [UART DIF](../../../../hw/ip/uart/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/dif/dif_usbdev.md b/sw/device/lib/dif/dif_usbdev.md
index 0c1c2d1..7910277 100644
--- a/sw/device/lib/dif/dif_usbdev.md
+++ b/sw/device/lib/dif/dif_usbdev.md
@@ -2,8 +2,8 @@
 title: "USB Device DIF Checklist"
 ---
 
-This checklist is for [Development Stage]({{< relref "/doc/project/development_stages.md" >}}) transitions for the [USB Device DIF]({{< relref "hw/ip/usbdev/doc" >}}).
-All checklist items refer to the content in the [Checklist]({{< relref "/doc/project/checklist.md" >}}).
+This checklist is for [Development Stage](../../../../doc/project_governance/development_stages.md) transitions for the [USB Device DIF](../../../../hw/ip/usbdev/README.md).
+All checklist items refer to the content in the [Checklist](../../../../doc/project_governance/checklist/README.md).
 
 <h2>DIF Checklist</h2>
 
@@ -15,19 +15,19 @@
 Implementation | [DIF_USED_IN_TREE][]   | Done        |
 Tests          | [DIF_TEST_ON_DEVICE][] | Done        |
 
-[DIF_EXISTS]:         {{< relref "/doc/project/checklist.md#dif_exists" >}}
-[DIF_USED_IN_TREE]:   {{< relref "/doc/project/checklist.md#dif_used_in_tree" >}}
-[DIF_TEST_ON_DEVICE]: {{< relref "/doc/project/checklist.md#dif_test_on_device" >}}
+[DIF_EXISTS]:         ../../../../doc/project_governance/checklist/README.md#dif_exists
+[DIF_USED_IN_TREE]:   ../../../../doc/project_governance/checklist/README.md#dif_used_in_tree
+[DIF_TEST_ON_DEVICE]: ../../../../doc/project_governance/checklist/README.md#dif_test_on_device
 
 <h3>S2</h3>
 
 Type           | Item                        | Resolution  | Note/Collaterals
 ---------------|-----------------------------|-------------|------------------
-Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard]({{< relref "hw" >}})
+Coordination   | [DIF_HW_FEATURE_COMPLETE][] | Done        | [HW Dashboard](../../../../hw/README.md)
 Implementation | [DIF_FEATURES][]            | Done        |
 
-[DIF_HW_FEATURE_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_feature_complete" >}}
-[DIF_FEATURES]:            {{< relref "/doc/project/checklist.md#dif_features" >}}
+[DIF_HW_FEATURE_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_feature_complete
+[DIF_FEATURES]:            ../../../../doc/project_governance/checklist/README.md#dif_features
 
 <h3>S3</h3>
 
@@ -42,9 +42,9 @@
 Review         | Reviewer(s)                      | Not Started |
 Review         | Signoff date                     | Not Started |
 
-[DIF_HW_DESIGN_COMPLETE]:       {{< relref "/doc/project/checklist.md#dif_hw_design_complete" >}}
-[DIF_HW_VERIFICATION_COMPLETE]: {{< relref "/doc/project/checklist.md#dif_hw_verification_complete" >}}
-[DIF_DOC_HW]:                   {{< relref "/doc/project/checklist.md#dif_doc_hw" >}}
-[DIF_CODE_STYLE]:               {{< relref "/doc/project/checklist.md#dif_code_style" >}}
-[DIF_TEST_UNIT]:                {{< relref "/doc/project/checklist.md#dif_test_unit" >}}
-[DIF_TODO_COMPLETE]:            {{< relref "/doc/project/checklist.md#dif_todo_complete" >}}
+[DIF_HW_DESIGN_COMPLETE]:       ../../../../doc/project_governance/checklist/README.md#dif_hw_design_complete
+[DIF_HW_VERIFICATION_COMPLETE]: ../../../../doc/project_governance/checklist/README.md#dif_hw_verification_complete
+[DIF_DOC_HW]:                   ../../../../doc/project_governance/checklist/README.md#dif_doc_hw
+[DIF_CODE_STYLE]:               ../../../../doc/project_governance/checklist/README.md#dif_code_style
+[DIF_TEST_UNIT]:                ../../../../doc/project_governance/checklist/README.md#dif_test_unit
+[DIF_TODO_COMPLETE]:            ../../../../doc/project_governance/checklist/README.md#dif_todo_complete
diff --git a/sw/device/lib/testing/README.md b/sw/device/lib/testing/README.md
index c38c326..65e3d49 100644
--- a/sw/device/lib/testing/README.md
+++ b/sw/device/lib/testing/README.md
@@ -4,20 +4,20 @@
 
 # Overview
 
-This subtree contains _test library code_ that could aid in the writing of [chip-level tests]({{< relref "sw/device/tests/index.md" >}}).
+This subtree contains _test library code_ that could aid in the writing of [chip-level tests](../../tests/README.md).
 Test library code consists of two components:
 1. `testutils` libraries, and
-2. the [on-device test framework]({{< relref "sw/device/lib/testing/test_framework/index.md" >}}).
+2. the [on-device test framework](./test_framework/README.md).
 
 Functions in `testutils` libraries are designed to wrap several DIF invocations that are commonly used together across many chip-level tests.
 They are _not_ designed to wrap a single DIF call.
 
-The [on-device test framework]({{< relref "sw/device/lib/testing/test_framework/index.md" >}}) provides a generic platform for writing chip-level tests.
+The [on-device test framework](./test_framework/README.md) provides a generic platform for writing chip-level tests.
 
 # Style Guide
 
 - All `testutils` libraries should be placed in `sw/device/lib/testing/*`
-- The [on-device test framework]({{< relref "sw/device/lib/testing/test_framework/index.md" >}})
+- The [on-device test framework](./test_framework/README.md)
 code will live in: `sw/device/lib/testing/test\_framework`.
 - `testutils` libraries will be named: `<IP or functionality name>_testutils.<h,c>`
 - All `testutils` function names should take on the following format: `<IP or functionality name>_testutils_<function name>()`.
@@ -31,6 +31,6 @@
 - Pass-through `sw/device/lib/dif_base.h` types where appropriate.
   This allows testutils functions to easily mix with DIFs within chip-level tests.
 - Avoid defining testutils that call a single DIF, and use the DIF directly.
-  If a DIF does not exist for your needs, create one by following the [DIF development guide]({{< relref "sw/device/lib/dif" >}}).
+  If a DIF does not exist for your needs, create one by following the [DIF development guide](../dif/README.md).
 
 {{% sectionContent %}}
diff --git a/sw/device/lib/testing/test_framework/README.md b/sw/device/lib/testing/test_framework/README.md
index 09e4527..754cf78 100644
--- a/sw/device/lib/testing/test_framework/README.md
+++ b/sw/device/lib/testing/test_framework/README.md
@@ -6,13 +6,13 @@
 
 ![Chip-level Test Infrastructure](chip_level_test_infra.svg)
 
-[Chip-level tests]({{< relref "sw/device/tests/index.md" >}}) are designed to be executed across all OpenTitan verification targets DV simulation, Verilator simulation, FPGA, and (eventually) silicon, using host-side test initiation tools, and an on-device test framework, as shown in the figure above.
+[Chip-level tests](../../../tests/README.md) are designed to be executed across all OpenTitan verification targets DV simulation, Verilator simulation, FPGA, and (eventually) silicon, using host-side test initiation tools, and an on-device test framework, as shown in the figure above.
 On the _host_ side, two main tools are used to initiate tests on the device. For the DV simulation target, the [dvsim.py](https://github.com/lowRISC/opentitan/blob/master/util/dvsim/dvsim.py) tool is used, while for Verilator and FPGA targets, Bazel (and `opentitantool`) is used.
 Focusing on the _device_ side, for all three targets, the [on-device test framework](https://github.com/lowRISC/opentitan/blob/master/sw/device/lib/testing/test_framework/test_main.c) is used to provide a uniform execution environment for chip-level tests.
 The [on-device test framework](https://github.com/lowRISC/opentitan/blob/master/sw/device/lib/testing/test_framework/test_main.c) provides boilerplate setup code that configures the UART for communicating messages and test results back to the host.
 
 # Writing a Chip-Level Test
-To write a chip-level test that uses this framework, one must create a new C file for the test (see [Chip-Level Tests]({{< relref "sw/device/tests/index.md">}}) for where to place this test) and follow the steps below.
+To write a chip-level test that uses this framework, one must create a new C file for the test (see [Chip-Level Tests](../../../tests/README.md) for where to place this test) and follow the steps below.
 
 ## Test Setup
 Each chip-level test must contain the following boilerplate setup code:
diff --git a/sw/device/silicon_creator/rom/README.md b/sw/device/silicon_creator/rom/README.md
index 5cd3ca3..394e740 100644
--- a/sw/device/silicon_creator/rom/README.md
+++ b/sw/device/silicon_creator/rom/README.md
@@ -269,5 +269,5 @@
 
 
 <!-- Links -->
-[csm-secure-boot]: {{< relref "doc/security/specs/secure_boot" >}}
-[rom-ext-manifest]: {{< relref "sw/device/silicon_creator/rom_ext/docs/manifest" >}}
+[csm-secure-boot]: ../../../../doc/security/specs/secure_boot/README.md
+[rom-ext-manifest]: ../rom_ext/doc/manifest.md
diff --git a/sw/device/tests/README.md b/sw/device/tests/README.md
index 4aef402..c378b60 100644
--- a/sw/device/tests/README.md
+++ b/sw/device/tests/README.md
@@ -4,7 +4,7 @@
 
 # Overview
 
-This subtree contains three types of chip-level tests that are capable of running across all OpenTitan verification targets, using the [on-device test framework]({{< relref "sw/device/lib/testing/test_framework/index.md" >}}).
+This subtree contains three types of chip-level tests that are capable of running across all OpenTitan verification targets, using the [on-device test framework](../lib/testing/test_framework/README.md).
 These targets include: DV simulation, Verilator simulation, FPGA, and eventually silicon.
 
 # Test Types
@@ -36,13 +36,13 @@
 ### Subfoldering Target-Specific Tests
 Ideally all smoke, IP integration, and system-level tests should be target agnostic.
 However, some tests require emulation of host capabilities, such as an external SPI or I2C host, an external host to encrypt/decrypt data, or an external host that toggles GPIO pins.
-Eventually, host-side test initiation tools and the [on-device test framework]({{< relref "sw/device/lib/testing/test_framework/index.md" >}}) will make host emulation opaque to each chip-level test.
+Eventually, host-side test initiation tools and the [on-device test framework](../lib/testing/test_framework/README.md) will make host emulation opaque to each chip-level test.
 However, until then, host emulation depends on the target (e.g., DV vs. Verilator simulation).
 Therefore, chip-level tests that require external stimulation from the host, will be subfoldered by target, under the appropriate toplevel folder above.
 One example of such a test is the [`sw/device/tests/sim_dv/gpio_test.c`](https://github.com/lowRISC/opentitan/blob/master/sw/device/tests/sim_dv/gpio_test.c), which is subfoldered under `../sim_dv/` to indicate it is a target-specific test.
 
 # Writing a Chip-Level Test
-For instructions on how to write a chip-level test, refer to the [on-device test framework]({{< relref "sw/device/lib/testing/test_framework/index.md" >}}) page.
+For instructions on how to write a chip-level test, refer to the [on-device test framework](../lib/testing/test_framework/README.md) page.
 
 # List of Tests