@@ -8,7 +8,12 @@ import { RSTOptions, AllFormatOptions, mergeOpts } from './opts';
8
8
import { OptionNamePart , Paragraph , ReturnValuePart } from './dom' ;
9
9
import { addToDestination } from './format' ;
10
10
11
- export function quoteRST ( text : string , escape_starting_whitespace = false , escape_ending_whitespace = false ) : string {
11
+ export function quoteRST (
12
+ text : string ,
13
+ escape_starting_whitespace = false ,
14
+ escape_ending_whitespace = false ,
15
+ must_not_be_empty = false ,
16
+ ) : string {
12
17
text = text . replace ( / ( [ \\ < > _ * ` ] ) / g, '\\$1' ) ;
13
18
14
19
if ( escape_ending_whitespace && text . endsWith ( ' ' ) ) {
@@ -17,6 +22,9 @@ export function quoteRST(text: string, escape_starting_whitespace = false, escap
17
22
if ( escape_starting_whitespace && text . startsWith ( ' ' ) ) {
18
23
text = '\\ ' + text ;
19
24
}
25
+ if ( must_not_be_empty && text === '' ) {
26
+ text = '\\ ' ;
27
+ }
20
28
return text ;
21
29
}
22
30
@@ -37,7 +45,7 @@ function formatAntsibullOptionLike(part: OptionNamePart | ReturnValuePart, role:
37
45
result . push ( '=' ) ;
38
46
result . push ( part . value ) ;
39
47
}
40
- return `\\ :${ role } :\`${ quoteRST ( result . join ( '' ) , true , true ) } \`\\ ` ;
48
+ return `\\ :${ role } :\`${ quoteRST ( result . join ( '' ) , true , true , true ) } \`\\ ` ;
41
49
}
42
50
43
51
function formatPlainOptionLike ( part : OptionNamePart | ReturnValuePart ) : string {
@@ -63,43 +71,45 @@ function formatPlainOptionLike(part: OptionNamePart | ReturnValuePart): string {
63
71
value = `${ value } =${ part . value } ` ;
64
72
}
65
73
const pluginText = plugin . length ? ` (of ${ plugin . join ( '' ) } )` : '' ;
66
- const mainText = `:literal:\`${ quoteRST ( value , true , true ) } \`` ;
74
+ const mainText = `:literal:\`${ quoteRST ( value , true , true , true ) } \`` ;
67
75
return `\\ ${ mainText } ${ pluginText } \\ ` ;
68
76
}
69
77
70
78
const DEFAULT_FORMATTER : AllFormatOptions = {
71
- formatError : ( part ) => `\\ :strong:\`ERROR while parsing\`\\ : ${ quoteRST ( part . message , true , true ) } \\ ` ,
72
- formatBold : ( part ) => `\\ :strong:\`${ quoteRST ( part . text , true , true ) } \`\\ ` ,
73
- formatCode : ( part ) => `\\ :literal:\`${ quoteRST ( part . text , true , true ) } \`\\ ` ,
79
+ formatError : ( part ) => `\\ :strong:\`ERROR while parsing\`\\ : ${ quoteRST ( part . message , true , true , true ) } \\ ` ,
80
+ formatBold : ( part ) => `\\ :strong:\`${ quoteRST ( part . text , true , true , true ) } \`\\ ` ,
81
+ formatCode : ( part ) => `\\ :literal:\`${ quoteRST ( part . text , true , true , true ) } \`\\ ` ,
74
82
formatHorizontalLine : ( ) => '\n\n.. raw:: html\n\n <hr>\n\n' ,
75
- formatItalic : ( part ) => `\\ :emphasis:\`${ quoteRST ( part . text , true , true ) } \`\\ ` ,
76
- formatLink : ( part ) => `\\ \`${ quoteRST ( part . text ) } <${ encodeURI ( part . url ) } >\`__\\ ` ,
77
- formatModule : ( part ) => `\\ :ref:\`${ quoteRST ( part . fqcn ) } <ansible_collections.${ part . fqcn } _module>\`\\ ` ,
78
- formatRSTRef : ( part ) => `\\ :ref:\`${ quoteRST ( part . text ) } <${ part . ref } >\`\\ ` ,
83
+ formatItalic : ( part ) => `\\ :emphasis:\`${ quoteRST ( part . text , true , true , true ) } \`\\ ` ,
84
+ formatLink : ( part ) => ( part . text === '' ? '' : `\\ \`${ quoteRST ( part . text ) } <${ encodeURI ( part . url ) } >\`__\\ ` ) ,
85
+ formatModule : ( part ) =>
86
+ `\\ :ref:\`${ quoteRST ( part . fqcn , true , true , true ) } <ansible_collections.${ part . fqcn } _module>\`\\ ` ,
87
+ formatRSTRef : ( part ) => `\\ :ref:\`${ quoteRST ( part . text , true , true , true ) } <${ part . ref } >\`\\ ` ,
79
88
formatURL : ( part ) => `\\ ${ encodeURI ( part . url ) } \\ ` ,
80
89
formatText : ( part ) => quoteRST ( part . text ) ,
81
- formatEnvVariable : ( part ) => `\\ :envvar:\`${ quoteRST ( part . name , true , true ) } \`\\ ` ,
90
+ formatEnvVariable : ( part ) => `\\ :envvar:\`${ quoteRST ( part . name , true , true , true ) } \`\\ ` ,
82
91
formatOptionName : ( part ) => formatAntsibullOptionLike ( part , 'ansopt' ) ,
83
- formatOptionValue : ( part ) => `\\ :ansval:\`${ quoteRST ( part . value , true , true ) } \`\\ ` ,
92
+ formatOptionValue : ( part ) => `\\ :ansval:\`${ quoteRST ( part . value , true , true , true ) } \`\\ ` ,
84
93
formatPlugin : ( part ) =>
85
94
`\\ :ref:\`${ quoteRST ( part . plugin . fqcn ) } <ansible_collections.${ part . plugin . fqcn } _${ part . plugin . type } >\`\\ ` ,
86
95
formatReturnValue : ( part ) => formatAntsibullOptionLike ( part , 'ansretval' ) ,
87
96
} ;
88
97
89
98
const PLAIN_FORMATTER : AllFormatOptions = {
90
- formatError : ( part ) => `\\ :strong:\`ERROR while parsing\`\\ : ${ quoteRST ( part . message , true , true ) } \\ ` ,
91
- formatBold : ( part ) => `\\ :strong:\`${ quoteRST ( part . text , true , true ) } \`\\ ` ,
92
- formatCode : ( part ) => `\\ :literal:\`${ quoteRST ( part . text , true , true ) } \`\\ ` ,
99
+ formatError : ( part ) => `\\ :strong:\`ERROR while parsing\`\\ : ${ quoteRST ( part . message , true , true , true ) } \\ ` ,
100
+ formatBold : ( part ) => `\\ :strong:\`${ quoteRST ( part . text , true , true , true ) } \`\\ ` ,
101
+ formatCode : ( part ) => `\\ :literal:\`${ quoteRST ( part . text , true , true , true ) } \`\\ ` ,
93
102
formatHorizontalLine : ( ) => '\n\n------------\n\n' ,
94
- formatItalic : ( part ) => `\\ :emphasis:\`${ quoteRST ( part . text , true , true ) } \`\\ ` ,
95
- formatLink : ( part ) => `\\ \`${ quoteRST ( part . text ) } <${ encodeURI ( part . url ) } >\`__\\ ` ,
96
- formatModule : ( part ) => `\\ :ref:\`${ quoteRST ( part . fqcn ) } <ansible_collections.${ part . fqcn } _module>\`\\ ` ,
97
- formatRSTRef : ( part ) => `\\ :ref:\`${ quoteRST ( part . text ) } <${ part . ref } >\`\\ ` ,
103
+ formatItalic : ( part ) => `\\ :emphasis:\`${ quoteRST ( part . text , true , true , true ) } \`\\ ` ,
104
+ formatLink : ( part ) => ( part . text === '' ? '' : `\\ \`${ quoteRST ( part . text ) } <${ encodeURI ( part . url ) } >\`__\\ ` ) ,
105
+ formatModule : ( part ) =>
106
+ `\\ :ref:\`${ quoteRST ( part . fqcn , true , true , true ) } <ansible_collections.${ part . fqcn } _module>\`\\ ` ,
107
+ formatRSTRef : ( part ) => `\\ :ref:\`${ quoteRST ( part . text , true , true , true ) } <${ part . ref } >\`\\ ` ,
98
108
formatURL : ( part ) => `\\ ${ encodeURI ( part . url ) } \\ ` ,
99
109
formatText : ( part ) => quoteRST ( part . text ) ,
100
- formatEnvVariable : ( part ) => `\\ :envvar:\`${ quoteRST ( part . name , true , true ) } \`\\ ` ,
110
+ formatEnvVariable : ( part ) => `\\ :envvar:\`${ quoteRST ( part . name , true , true , true ) } \`\\ ` ,
101
111
formatOptionName : ( part ) => formatPlainOptionLike ( part ) ,
102
- formatOptionValue : ( part ) => `\\ :literal:\`${ quoteRST ( part . value , true , true ) } \`\\ ` ,
112
+ formatOptionValue : ( part ) => `\\ :literal:\`${ quoteRST ( part . value , true , true , true ) } \`\\ ` ,
103
113
formatPlugin : ( part ) =>
104
114
`\\ :ref:\`${ quoteRST ( part . plugin . fqcn ) } <ansible_collections.${ part . plugin . fqcn } _${ part . plugin . type } >\`\\ ` ,
105
115
formatReturnValue : ( part ) => formatPlainOptionLike ( part ) ,
0 commit comments