-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUsageString.wl
50 lines (27 loc) · 1.01 KB
/
UsageString.wl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(* ::Package:: *)
(* ::Title:: *)
(*UsageString*)
(* ::Text:: *)
(*See on GitHub: https://github.com/maxitg/WLUsageString.*)
BeginPackage["UsageString`"];
Unprotect @ UsageString;
Begin["`Private`"];
$ArgStyle[arg_Integer] := "TR";
$ArgStyle["\[Ellipsis]"] := "TR";
$ArgStyle[str_String] := "TI";
$ArgString[arg_] :=
"\!\(\*StyleBox[\"" <> ToString[arg] <> "\", \"" <> $ArgStyle[arg] <> "\"]\)"
UsageString[str__] :=
(StringTemplate[StringJoin[{str}]] /. {TemplateSlot[s_] :> $ArgString[s]})[]
UsageString::usage = StringJoin[
UsageString[
"UsageString[\!\(\*SubscriptBox[\(`s`\), \(`1`\)]\), ",
"\!\(\*SubscriptBox[\(`s`\), \(`2`\)]\), `\[Ellipsis]`] yields a usage string where ",
"\!\(\*SubscriptBox[\(`s`\), \(`i`\)]\) are concatenated and slots enclosed by `",
" are rendered in italic similar to official Wolfram Language documentation."],
"\nFor example, UsageString[\"f[`x`] yields f of `x`.\"] ",
UsageString["will render `x` in italic."]
];
End[];
Protect @ UsageString;
EndPackage[];