TEchX is a lightweight typesetting system designed for creating easy and smooth technical documentation. It supports a custom .techx
file format, allowing you to easily define sections like titles, authors, API references, and changelogs. TEchX can render these files into both HTML and PDF formats which can be displayed for documentation.
Custom Typesetting Language: Use .techx
files with a simple syntax to define your documentation structure. This is a custom file extension for this system.
HTML Output: Generate clean and responsive HTML documentation from your .techx
files.
PDF Output: Convert .techx
files into polished PDF documents, suitable for printing and sharing.
You can install TEchX via pip
.
Visit the PyPI official release : TEchX
pip install techx==0.1
Also run pip install requirements.txt
after cloning the repository to install some dependencies.
Clone the repository and install it locally:
git clone https://github.com/yourusername/TEchX.git
cd TEchX
pip install .
Once installed, you can use the techx
command-line tool to generate HTML and PDF documentation.
techx tech_doc.techx --output-html tech_doc.html
This command converts tech_doc.techx
into tech_doc.html
.
techx tech_doc.techx --output-pdf tech_doc.pdf
This command converts tech_doc.techx
into tech_doc.pdf
.
## TEchX syntax: TEchX provides a very easy and simple syntax to produce technical documentation for small scale projects and also individual files.
Techdoc uses a simple and intuitive syntax to define sections, code snippets, API references, and changelogs within .techx
files. All commands begin with a ~
symbol, and the escape character is also ~
. Below is a breakdown of the available commands and their usage.
~title{}
: Specifies the title of the document.
~title{Project Documentation}
~author{}
: Specifies the author’s name.
~author{John Doe}
~date{}
: Specifies the date of the document.
This is an optional parameter. If left empty, it automatically fetches the date from the system.
~date{15 Oct 2005}
~section{}
: Defines a new section in the document. The section title is provided within the curly braces.
~section{Introduction}
This is the introduction section.
~code{language : code}
: Embeds a code snippet in the document. The language
specifies the programming language for syntax highlighting, and the code
is the actual code snippet.
~code{bash : npm install myproject}
Multiline code snippets are also supported:
~code{javascript :
const myProject = require('myproject');
myProject.doSomething();
}
~api{}
: Defines an API reference entry. The command is followed by the API method or function name, and a description is provided in the text.
~api{API_Reference}
Description: Executes the main function of the project.
Parameters: none
Returns: void
~changelog{}
: Defines a changelog section. The changes are listed within the curly braces, with each change prefixed by a hyphen.
~changelog{
- v1.0.0: Initial release
- v1.1.0: Added new feature
}
Plain Text: Any text outside of a command is treated as plain text and will be rendered directly.
This is a regular paragraph of text.
~
: If you need to use the ~
character literally in your text, escape it by doubling the ~
.
Escaped tilde: '~~'
Currently, the project is in a nascent stage with more updates and development yet to come. Any new feature ideas and/or bugs can be reported in an issue or by opening a pull request in this repository! Design and implementation of some of the features is an ongoing process, so inputs are welcome. (PDF rendering is still at a very basic phase). All contributions are most welcome!
This project is an open source tool licensed under the MIT License.