Announcing Xojo2Markdown

Announcing Xojo2Markdown

Xojo2Markdown is a command-line application for transforming your xojo_project to distributable markdown directory structure. Automatically consumes project item members and notes, creates tables with descriptions for properties and methods, and converts note content from HTML.

Available free for macOS, Windows, and Linux.

Read More

9 Likes

Version 1.1.0 July 16, 2026

Desktop

Now supports documentation headers in methods and property note areas.

  //**
  ' Tries to do something and returns a boolean
  '   denoting success.
  '
  '  Doesn't always work, but should...theoretically.
  ' @example How to do something
  ' This example will conditionally try to do something or something else.
  ' ```
  ' If DoSomething() then
  '   MessageBox("We did something!")
  ' Else
  '   MessageBox("We failed to do something!")
  ' End
  ' ```
  ' @param param1 The first parameter.
  ' @param param2 The second parameter.
  ' @return A boolean denoting whether the operation was
  '   successful.
  //**

Interesting! I’ll have to see what it does with TPLM (the only source code I need documented atm).

1 Like

Version 1.1.1 July 16, 2026

Added Now adds links to tables pointing to info extracted from Method and Property documentation blocks.

1 Like