Table reference wasn't working. Fix by adding numfig=True and using the correct syntax.
Signed-off-by: Grant Likely grant.likely@arm.com --- source/chapter2-uefi.rst | 2 +- source/conf.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/source/chapter2-uefi.rst b/source/chapter2-uefi.rst index 4d813be..a8fe3a3 100644 --- a/source/chapter2-uefi.rst +++ b/source/chapter2-uefi.rst @@ -120,7 +120,7 @@ indicate which functions are available during runtime services. Functions that are not available during runtime services shall return EFI_UNSUPPORTED.
-Table :numref:_uefi_runtime_service_requirements details which EFI_RUNTIME_SERVICES +:numref:`uefi_runtime_service_requirements` details which EFI_RUNTIME_SERVICES are required to be implemented during boot services and runtime services.
.. _uefi_runtime_service_requirements: diff --git a/source/conf.py b/source/conf.py index 09287ce..0bfa5e3 100644 --- a/source/conf.py +++ b/source/conf.py @@ -82,6 +82,7 @@ pygments_style = 'sphinx' # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True
+numfig = True
# -- Options for HTML output ----------------------------------------------