/authoring

Primary LanguageShellBSD 2-Clause "Simplified" LicenseBSD-2-Clause

Document Title

An example of a basic AsciiDoc document prepared by Doc Writer.

Introduction

A paragraph followed by an unordered list[1] with square bullets.[2]

  • item 1

  • item 2

  • item 3

Main

Here’s how you say “Hello, World!” in Prawn:

Listing 1. Create a basic PDF document using Prawn
require 'prawn'

Prawn::Document.generate 'example.pdf' do
  text 'Hello, World!'
end

Conclusion

That’s all, folks!

Overview

This repo includes various shell scripts, templates, and helpful files that aide in authoring, editing and publishing documents in a professional settting (re: copywriting).

Usage

 …
 "documentConfig": {
-  "plugins": ["xml"]
 }
 …
 …
 "documentConfig": {
+  "plugins": ["docbook"]
 }
 …

License

ISC


1. AsciiDoc supports unordered, ordered, and description lists.
2. You may choose from square, disc, and circle for the bullet style.