This is an open-source command line app to help you quickly convert your text and markdown notes into HTML files so they can be easily published on your blog. With this tool, you can write your notes in plain text or markdown files and convert them into html files with a single command. This way, you can focus on learning to blog and not worry about the technical details of creating a blog.
To build and run this C# console application, follow these steps:
Before you begin, make sure you have the following prerequisites installed on your system:
- .NET SDK - Ensure you have the .NET SDK installed to build and run C# applications.
If you haven't already, clone this repository to your local machine using Git:
git clone https://github.com/Yousef-Majidi/Learn2Blog.git
change your working directory to the project folder:
cd Learn2Blog
Use the following command to build the application:
dotnet build
After the build is complete, navigate to bin/Debug/net7.0
:
cd bin/Debug/net7.0
You should now have a Learn2Blog.exe
file in your directory.
Run the app by using one of the options or provide an input argument:
# shows help
./Learn2Blog.exe -h
# shows version
./Learn2Blog.exe -v
# converts the input.txt file into HTML and outputs in the specified output directory
# can also be used with a directory as the input
./Learn2Blog.exe -o outputDirectory samples/inputSample.txt
# converts the input.txt file into HTML and outputs in the default directory
./Learn2Blog.exe samples/inputSample.txt
# converts all .txt and .md files in the directory into HTML and outputs in the default directory, unless specified with the -o flag
./Learn2Blog.exe samples/inputSample
# converts the input.md file into HTML and outputs in the default directory
# the -o option can also be used in the same way as above
./Learn2Blog.exe samples/inputSample.md
# uses the specified config file to convert the input.txt file into HTML and outputs in the default directory
# The -o option from CLI will be ignored if specified in the config file
./Learn2Blog.exe -c config.toml -o outputDirectory samples/inputSample.txt
- The app will place the output in a directory called
til
by default.- If the output directory is specified with the
-o
flag, this directory will be used instead.- If the output directory already exists, the app will overwrite its files.
- The name of the output file is the same as the input file.
- The title of the HTML file is the same as the input file name by default unless a title is specified in the input file.
- A title in the input file is the first line of the file followed by 2 empty lines:
This is the title <empty line> <empty line> This is the content of the file
- The app will convert the bold markdown syntax into the
<strong>
HTML tag- If the
-c
flag is used, the app will use the specified config file to convert the input file.
See CONTRIBUTING.md