From da32dad78fa48dd436c879c908627722d3c86aa9 Mon Sep 17 00:00:00 2001 From: Alex Martini Date: Wed, 28 Sep 2022 14:24:55 -0700 Subject: [PATCH 1/2] Disable see-also sections and title headings. --- Sources/TSPL/TSPL.docc/TSPL.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/TSPL/TSPL.docc/TSPL.md b/Sources/TSPL/TSPL.docc/TSPL.md index 5278bc797..40978de53 100644 --- a/Sources/TSPL/TSPL.docc/TSPL.md +++ b/Sources/TSPL/TSPL.docc/TSPL.md @@ -4,6 +4,11 @@ @DisplayName("The Swift Programming Language") } +@GlobalOptions { + @AutomaticSeeAlso(disabled) + @AutomaticTitleHeading(disabled) +} + ## Topics ### Guided Tour From 663eee387f9711814d8c4dd92b9123a336cf56e4 Mon Sep 17 00:00:00 2001 From: Alex Martini Date: Mon, 10 Oct 2022 14:04:57 -0700 Subject: [PATCH 2/2] Use the final syntax for global options. --- Sources/TSPL/TSPL.docc/TSPL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/TSPL/TSPL.docc/TSPL.md b/Sources/TSPL/TSPL.docc/TSPL.md index 40978de53..101a9cbca 100644 --- a/Sources/TSPL/TSPL.docc/TSPL.md +++ b/Sources/TSPL/TSPL.docc/TSPL.md @@ -4,7 +4,7 @@ @DisplayName("The Swift Programming Language") } -@GlobalOptions { +@Options(scope: global) { @AutomaticSeeAlso(disabled) @AutomaticTitleHeading(disabled) }