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:
committed by
Brennen Bearnes
parent
5148f5f601
commit
95dd2e0d2c
@@ -40,7 +40,7 @@ CSSFILE="$6"
|
||||
|
||||
[[ "$SYNTAX" == "markdown" ]] || { echo "Error: Unsupported syntax"; exit 2; };
|
||||
|
||||
OUTPUT="$OUTPUTDIR/$(basename "$INPUT" . "$EXTENSION").html"
|
||||
OUTPUT="$OUTPUTDIR/$(basename "$INPUT" ."$EXTENSION").html"
|
||||
|
||||
# # Method 1:
|
||||
# FORCEFLAG=
|
||||
|
||||
Reference in New Issue
Block a user