Trizbort.io is now able to export your map straight to TADS .t format. The export includes rooms, connections and objects in the rooms. Notes and blocks play no role in TADS (or any other adventure design system). Under the hood, [Handlebars][handlebars] templates are used to generate all the code, which makes it simple to add additional code generators (with an understanding of the language involved first).

Here is a sample snippet of TADS code generation.

#charset "us-ascii"

#include <tads.h>
#include "advlite.h"

versionInfo : GameID
  name = 'Deadly Cave Adventure'
  byline = 'By a Trizbort.io user'
  version = '1'
  desc = ''
;

OutsideCave: Room 'Outside Cave'
  description = "You are standing outside a dark, forboding cave. "
  north = EntryChamber
;

+ lamp: Item 'lamp'
  description = "An old-fashioned oil lamp. Rusty but servicable. "
;

me: Actor
  location = OutsideCave
;

gameMain: GameMainDef
  initialPlayerChar = me
;