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: tastydoc/readme.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ This tool produces Markdown documentation files for Scala projects using TASTy f
4
4
5
5
## How to run
6
6
Call main with the following arguments to produce Markdown documentation files: (Omitting { and })
7
-
***--syntax** {*wiki or markdown*} Syntax for parsing user documentation
8
-
***--packagestolink** {*regex1 regex2 ...*} Regexes of packages or entities (example: `scala.collection.*`). Only the types with a path matching these regexes will produce links in the documentation files
9
-
***--classpath** {*URI*} Extra classpath for input files
10
-
***-i** {*file1 file2 ...*} TASTy files
11
-
***-d** {*dir1 dir2 ...*} Directories to recursively find TASTy files
7
+
***[--syntax SYNTAX]** Syntax for parsing user documentation (either *wiki or markdown*)
8
+
***[--packagestolink REGEXES...]** Regexes of packages or entities (example: `scala.collection.*`). Only the types with a path matching these regexes will produce links in the documentation files
9
+
***[--classpathURI]** Extra classpath for input files
10
+
***[-i FILES...]** TASTy files
11
+
***[-d DIRECTORIES...]** Directories to recursively find TASTy files
Copy file name to clipboardExpand all lines: tastydoc/report/report.tex
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -208,11 +208,11 @@ \subsection{Main}
208
208
209
209
Command line parameters are:
210
210
\begin{itemize}
211
-
\item\textbf{--syntax} \{\textit{wiki} or \textit{markdown}\} Syntax to use for user documentation parsing
212
-
\item\textbf{--packagestolink} \{\textit{regex1 regex2 ...}\} Regexes of packages or entities (example: \texttt{scala.collection.*}). Only the types with a path matching these regexes will produce links in the documentation files
213
-
\item\textbf{--classpath} \{\textit{URI}\} Extra classpath for input files
\item\textbf{-d} \{\textit{dir1 dir2 ...}\} Directories to recursively find TASTy files
211
+
\item\textbf{\texttt{[--syntax SYNTAX]}} Syntax to use for user documentation parsing (either \textit{wiki} or \textit{markdown})
212
+
\item\textbf{\texttt{[--packagestolink REGEXES...]}} Regexes of packages or entities (example: \texttt{scala.collection.*}). Only the types with a path matching these regexes will produce links in the documentation files
213
+
\item\textbf{\texttt{[--classpathURI]}} Extra classpath for input files
214
+
\item\textbf{\texttt{[-i FILES...]}} TASTy files
215
+
\item\textbf{\texttt{[-d DIRECTORIES...]}} Directories to recursively find TASTy files
Copy file name to clipboardExpand all lines: tastydoc/src/dotty/tastydoc/Main.scala
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ import java.io._
10
10
objectMain {
11
11
12
12
/** Call main with the following arguments to produce Markdown documentation files: (Omitting { and })
13
-
* * **--syntax** {*wiki or markdown*} Syntax for parsing user documentation
14
-
* * **--packagestolink** {*regex1 regex2 ...*} Regexes of packages or entities (example: `scala.collection.*`). Only the types with a path matching these regexes will produce links in the documentation files
15
-
* * **--classpath** {*URI*} Extra classpath for input files
* * **[--syntax SYNTAX]** Syntax for parsing user documentation (either *wiki or markdown*)
14
+
* * **[--packagestolink REGEXES...]** Regexes of packages or entities (example: `scala.collection.*`). Only the types with a path matching these regexes will produce links in the documentation files
15
+
* * **[--classpathURI]** Extra classpath for input files
16
+
* * **[-i FILES...]** TASTy files
17
+
* * **[-d DIRECTORIES...]** Directories to recursively find TASTy files
0 commit comments