We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c0af63 commit f2cb8f4Copy full SHA for f2cb8f4
scripts/cli2md.rb
@@ -11,7 +11,8 @@
11
# read from stdin or files in the args
12
ARGF.each_with_index do |line, line_num|
13
# Replace all prime symbols with backticks. We use prime symbols instead of backticks in CLI
14
- # helptext because Go does not support escaping backticks in backtick delimited strings.
+ # helptext because the cli framework we use, urfave/cli, has special handling for backticks.
15
+ #
16
# See: https://github.com/buildkite/agent/blob/main/clicommand/prime-signs.md
17
line.tr!("′", "`")
18
0 commit comments