The Official TapirMD Libraries

The page is written in TapirMD (source is available here).

TapirMD official maintains libraries for Zig, WebAssembly (WASM), JavaScript, and Go.

The Zig library is fully featured, while the others currently support only HTML generation (from TapirMD documents) and TapirMD document formatting.

The Zig library

The repository containing the Zig library is hosted at https://github.com/tapirmd/tmd.

To use the library, the TapirMD dependency entry should be put in the build.zig.zon file of your Zig project. It is recommended to choose a tagged version as the dependency. The following example uses the v0.0.5 version tag.

build.zig.zon
...
        .tmd = .{
            .url = "https://github.com/tapirmd/tmd/archive/refs/tags/v0.0.5.zip",
        },
...

The library provides a tmd module which can be imported into the modules of your Zig project.

build.zig
...
    const tmdModule = b.dependency("tmd", .{
		.target = target,
		.optimize = optimize,
	}).module("tmd");
...
    myModule.addImport("tmd", tmdModule);
...

Here is an example Zig project which uses the TapirMD Zig library.

The WASM library

The steps to build the TapirMD WASM library:

  1. Install Zig, if haven't. The latest version tip (master) version is recommended.

  2. Get the source code of the TapirMD project. You can clone it (install Git if needed) or download its source code.

  3. Open your terminal or command prompt, and change directory to the TapirMD project folder, then run
       zig build -Doptimize=ReleaseSmall wasm
    
    If the build is successful, the output tmd.wasm binary file will be located in the lib folder under the project local zig-out folder.

The output tmd.wasm binary file can be used in various languages. The official TapirMD JavaScript and Go libraries are both built upon WASM.

The WASM binary file exports several APIs:

Every memory offset return result is a int32 value. A negative offset means an error and the memory offset of the error string (a C-style string) is the absolute value of the negative offset minus one.

Host apps should provide an env module which contains a print function. The print function takes 4 uint32 and one int32 parameters.
  1. the 1st uint32 parameter means the memory offset of the first string.
  2. the 2nd uint32 parameter means the length (in bytes) of the first string.
  3. the 3rd uint32 parameter means the memory offset of the second string.
  4. the 4th uint32 parameter means the length (in bytes) of the second string.
  5. the final int32 parameter is just a plain integer value.

For implementation details, please reference the official TapirMD JavaScript and Go libraries (see below).

The JavaScript library

Currently, the official TapirMD JavaScript library can be only used in browser environments.

The steps to build the TapirMD JavaScript library:

  1. Install Zig, if haven't. The latest version tip (master) version is recommended.

  2. Get the source code of the TapirMD project. You can clone it (install Git if needed) or download its source code.

  3. Open your terminal or command prompt, and change directory to the TapirMD project folder, then run
       zig build -Doptimize=ReleaseSmall js
    
    If the build is successful, the output tmd-with-wasm.js file will be located in the lib folder under the project local zig-out folder.

Please read the source code of the online play page to get how to use the JavaScript library.

The Go library

The TapirMD official Go library is hosted at https://github.com/go101/tmd.go.

The library repository includes an example demonstrating its usage.

The API documentation is available at https://pkg.go.dev/go101.org/tmd.go.