[Doc] Small tweak to markdown.

This commit is contained in:
Dave Davenport 2023-01-16 18:42:48 +01:00
parent 652be74b1b
commit b988efdb60
3 changed files with 12 additions and 12 deletions

View File

@ -64,8 +64,8 @@ The encoding of the file is utf-8. Both Unix (`\n`) and windows (`\r\n`) newline
C and C++ file comments are supported. C and C++ file comments are supported.
* Anything after `// ` and before a newline is considered a comment. * Anything after `// ` and before a newline is considered a comment.
* Everything between `/*` and `*/` is a comment. * Everything between `/*` and `*/` is a comment.
Comments can be nested and the C comments can be inline. Comments can be nested and the C comments can be inline.

View File

@ -1,13 +1,13 @@
#!/usr/bin/env bash #!/usr/bin/env bash
if [ "$@" = "quit" ] if [[ "$@" = "quit" ]]
then then
exit 0 exit 0
fi fi
# Override the previously set prompt. # Override the previously set prompt.
# We only want to do this on first call of script. # We only want to do this on first call of script.
if [ $ROFI_RETV = 0 ] if [[ $ROFI_RETV = 0 ]]
then then
echo -en "\x00delim\x1f\\x1\n" echo -en "\x00delim\x1f\\x1\n"
fi fi

View File

@ -122,14 +122,14 @@ consult manpages, [discussion](https://github.com/davatorium/rofi/discussions)
and [issue tracker](https://github.com/davatorium/rofi/issues?q=) before filing and [issue tracker](https://github.com/davatorium/rofi/issues?q=) before filing
new issue. new issue.
* Manpages: * Manpages:
* [rofi](doc/rofi.1.markdown) * [rofi](doc/rofi.1.markdown)
* [rofi-theme](doc/rofi-theme.5.markdown) * [rofi-theme](doc/rofi-theme.5.markdown)
* [rofi-debugging](doc/rofi-debugging.5.markdown) * [rofi-debugging](doc/rofi-debugging.5.markdown)
* [rofi-script](doc/rofi-script.5.markdown) * [rofi-script](doc/rofi-script.5.markdown)
* [rofi-theme-selector](doc/rofi-theme-selector.1.markdown) * [rofi-theme-selector](doc/rofi-theme-selector.1.markdown)
* [rofi-keys](doc/rofi-keys.5.markdown) * [rofi-keys](doc/rofi-keys.5.markdown)
* [rofi-dmenu](doc/rofi-dmenu.5.markdown) * [rofi-dmenu](doc/rofi-dmenu.5.markdown)
# Installation # Installation