Merge pull request #205768 from hercules-ci/remove-numbers-from-manuals

doc: Remove all section numbers

authored by Robert Hensing and committed by GitHub a70a6915 1e860ea5

+12 -6
+6 -3
doc/doc-support/parameters.xml
··· 2 2 <xsl:stylesheet 3 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 4 version="1.0"> 5 - <xsl:param name="section.autolabel" select="1" /> 6 - <xsl:param name="section.label.includes.component.label" select="1" /> 5 + <xsl:param name="chapter.autolabel" select="0" /> 6 + <xsl:param name="part.autolabel" select="0" /> 7 + <xsl:param name="preface.autolabel" select="0" /> 8 + <xsl:param name="reference.autolabel" select="0" /> 9 + <xsl:param name="section.autolabel" select="0" /> 7 10 <xsl:param name="html.stylesheet" select="'style.css overrides.css highlightjs/mono-blue.css'" /> 8 11 <xsl:param name="html.script" select="'./highlightjs/highlight.pack.js ./highlightjs/loader.js'" /> 9 - <xsl:param name="xref.with.number.and.title" select="1" /> 12 + <xsl:param name="xref.with.number.and.title" select="0" /> 10 13 <xsl:param name="use.id.as.filename" select="1" /> 11 14 <xsl:param name="toc.section.depth" select="0" /> 12 15 <xsl:param name="admon.style" select="''" />
+6 -3
nixos/doc/manual/default.nix
··· 102 102 ''; 103 103 104 104 manualXsltprocOptions = toString [ 105 - "--param section.autolabel 1" 106 - "--param section.label.includes.component.label 1" 105 + "--param chapter.autolabel 0" 106 + "--param part.autolabel 0" 107 + "--param preface.autolabel 0" 108 + "--param reference.autolabel 0" 109 + "--param section.autolabel 0" 107 110 "--stringparam html.stylesheet 'style.css overrides.css highlightjs/mono-blue.css'" 108 111 "--stringparam html.script './highlightjs/highlight.pack.js ./highlightjs/loader.js'" 109 - "--param xref.with.number.and.title 1" 112 + "--param xref.with.number.and.title 0" 110 113 "--param toc.section.depth 0" 111 114 "--param generate.consistent.ids 1" 112 115 "--stringparam admon.style ''"