Revert breaking changes to customwiki2html.sh file

There is an extra space when calling the `basename` command, which causes the following error:
```
Vimwiki: 'basename: extra operand ‘md’
Try ''basename --help'' for more information.
```
This commit is contained in:
Tulio Brunoro
2021-11-18 11:29:42 -03:00
committed by Brennen Bearnes
parent 5148f5f601
commit 95dd2e0d2c
+1 -1
View File
@@ -40,7 +40,7 @@ CSSFILE="$6"
[[ "$SYNTAX" == "markdown" ]] || { echo "Error: Unsupported syntax"; exit 2; }; [[ "$SYNTAX" == "markdown" ]] || { echo "Error: Unsupported syntax"; exit 2; };
OUTPUT="$OUTPUTDIR/$(basename "$INPUT" . "$EXTENSION").html" OUTPUT="$OUTPUTDIR/$(basename "$INPUT" ."$EXTENSION").html"
# # Method 1: # # Method 1:
# FORCEFLAG= # FORCEFLAG=