Skip to content

Instantly share code, notes, and snippets.

@isurfer21
Last active January 9, 2024 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isurfer21/0808112fbb58329ca91cfd3466347e71 to your computer and use it in GitHub Desktop.
Save isurfer21/0808112fbb58329ca91cfd3466347e71 to your computer and use it in GitHub Desktop.
Markdown 2 HTML converter CLI wrapper made using Pandoc
#!/bin/bash
# This script takes two arguments: input filename and output filename
# It uses pandoc to convert the input file to a html file with specified options
# Check if the number of arguments is correct
if [ $# -ne 2 ]; then
echo "Usage: ${0##*/} input.md output.html"
exit 1
fi
# Assign the arguments to variables
input_file=$1
output_file=$2
# Run the pandoc command with the input and output files
pandoc -o "$output_file" "$input_file"
# Check if the conversion was successful
if [ $? -eq 0 ]; then
echo "Conversion successful!"
else
echo "Conversion failed!"
exit 2
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment