IBM Streams 4.3.0
Monospace typeface
To display text in monospace typeface, such as
the text of inline code, delimit the text with back quotation marks
(` `).
The markup for monospace typeface must be next to the text, and must not be separated by white space. The markup tags for different typeface can be nested.
- Monospace typeface is delimited by back quotation marks
- The following text uses SPLDOC markup to represent inline
code.
/** * This composite takes a default text file (default `in.txt`) as input * and saves the updated output in file `out.txt`. Errors, if any, * are saved in the `err.txt` file. */ - The spl-make-doc command generates HTML similar to this
code.
<p>This composite takes a default text file (default <tt>in.txt</tt>) as input and saves the updated output in file <tt>out.txt</tt>. Errors, if any, are saved in file <tt>err.txt</tt>. </p>