Function File: reference = txi2reference (file_pattern)

Convert .txi files in the Octave source into a functon reference.

file_pattern must be a string containing either the name of a .txi file, or a pattern for globbing a set of files (e.g. "*.txi"). The resulting cell array reference contains a string for each .txi file. These strings can the be passed to makeinfo to create output in many formats.

As an example, if the Octave source code is located in ~/octave_code, then this function can be called with

octave_source_code = "~/octave_code";
reference = txi2reference (fullfile (octave_source_code, "doc/interpreter", "*.txi"));

See also: makeinfo, txi2index.

Package: generate_html