Simple, fast, and powerful: convert your strings with SConverter.
Features:
- Save and load files
- Undo/Redo
- Real-time preview of converted strings
- Syntax highlighting editor (for HTML only)
- Lightweight and quick to open recent files
- Open source
- Native look and feel
From | To |
Plain | C-string
Sorted
MD5
SHA256
SHA512 |
Markdown | HTML
Plain |
HTML | Markdown
Plain |
C-string | Plain |
Example
Preview
A live preview is available here.
Dependencies:
Qt 5.10 or above.
Build instructions
To build SConverter, follow these steps:
- Clone the SConverter repository:
git clone https://github.com/tim-gromeyer/Converter --depth=1 && cd Converter
- Clone the required repositories by running the command
git submodule update --init --recursive -j 3 --depth=1
.
- Create a build directory:
mkdir build && cd build
.
- Generate a Makefile with CMake:
cmake ..
.
- Build the app:
cmake --build . -j4
Here is the process in one command:
git clone https://github.com/tim-gromeyer/Converter --depth=1 && cd Converter
git submodule update --init --recursive -j 3 --depth=1
mkdir build && cd build
cmake ..
cmake --build . -j4
Credits
- The conversion from Markdown to HTML is done with the help of the md4c - library by Martin Mitáš.