You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scaladoc/src/dotty/tools/scaladoc/ScaladocSettings.scala
+35-3
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,17 @@ class ScaladocSettings extends SettingGroup with CommonScalaSettings:
26
26
sourcepath, sourceroot
27
27
)
28
28
29
+
valprojectName:Setting[String] =
30
+
StringSetting("-project", "project title", "The name of the project.", "", aliases =List("-doc-title"))
31
+
32
+
valprojectVersion:Setting[String] =
33
+
StringSetting("-project-version", "project version", "The current version of your project.", "", aliases =List("-doc-version"))
34
+
35
+
valprojectLogo:Setting[String] =
36
+
StringSetting("-project-logo", "project logo filename", "The file that contains the project's logo (in /images).", "", aliases =List("-doc-logo"))
37
+
38
+
valprojectFooter:Setting[String] =StringSetting("-project-footer", "project footer", "A footer on every Scaladoc page.", "", aliases =List("-doc-footer"))
BooleanSetting("-groups", "Group similar functions together (based on the @group annotation)", false)
76
+
77
+
valvisibilityPrivate:Setting[Boolean] =
78
+
BooleanSetting("-private", "Show all types and members. Unless specified, show only public and protected types and members.", false)
79
+
80
+
valdocCanonicalBaseUrl:Setting[String] =
81
+
StringSetting(
82
+
"-doc-canonical-base-url",
83
+
"url",
84
+
s"A base URL to use as prefix and add `canonical` URLs to all pages. The canonical URL may be used by search engines to choose the URL that you want people to see in search results. If unset no canonical URLs are generated.",
85
+
""
86
+
)
87
+
88
+
valsiteRoot:Setting[String] =StringSetting(
89
+
"-siteroot",
90
+
"site root",
91
+
"A directory containing static files from which to generate documentation.",
92
+
"./docs"
93
+
)
94
+
60
95
valYdocumentSyntheticTypes:Setting[Boolean] =
61
96
BooleanSetting("-Ydocument-synthetic-types", "Documents intrinsic types e. g. Any, Nothing. Setting is useful only for stdlib", false)
0 commit comments