PAGES
ASCII Doc macro
Documentation:
Description
ASCII Doc is a lightweight markup language used for writing technical documentation. It aims to be simple and human-readable while providing features for structuring and formatting documents.
Potential use cases
Technical Documentation: Write manuals, guides, and API documentation in a clear and structured format.
Software Documentation: Document software architectures, code snippets, and configuration instructions for developers and users.
Project Documentation: Maintain project documentation, including requirements, specifications, and release notes, in a consistent and readable format.
Examples:
This is an example text.
Read more about ASCII Doc https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/[here].
== Section Title
* A list item
* Another list item
=== Example code section
[,ruby]
----
puts 'Hello, World!'
----