1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
From: Bastian Germann <bage@debian.org>
Date: Tue, 4 Oct 2022 08:16:37 +0200
Subject: Replace embedded images with ditaa syntax
---
README.rst | 46 +++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 43 insertions(+), 3 deletions(-)
diff --git a/README.rst b/README.rst
index d9c56d4..53f4a51 100644
--- a/README.rst
+++ b/README.rst
@@ -21,7 +21,17 @@ This extension enables you to insert block diagrams into your document generated
After conversion using ditaa, the above file becomes:
-.. image:: http://ditaa.sourceforge.net/images/first.png
+.. ditaa::
+
+ +--------+ +-------+ +-------+
+ | | --+ ditaa +--> | |
+ | Text | +-------+ |diagram|
+ |Document| |!magic!| | |
+ | {d}| | | | |
+ +---+----+ +-------+ +-------+
+ : ^
+ | Lots of work |
+ +-------------------------+
1. Introduction
===============
@@ -120,7 +130,17 @@ This source::
is rendered as:
-.. image:: http://ditaa.sourceforge.net/images/first.png
+.. ditaa::
+
+ +--------+ +-------+ +-------+
+ | | --+ ditaa +--> | |
+ | Text | +-------+ |diagram|
+ |Document| |!magic!| | |
+ | {d}| | | | |
+ +---+----+ +-------+ +-------+
+ : ^
+ | Lots of work |
+ +-------------------------+
Another example::
@@ -148,7 +168,27 @@ Another example::
is rendered as:
-.. image:: http://1.bp.blogspot.com/_kGFGcbwevHE/SYDL362PTdI/AAAAAAAAAXQ/VaK15NeJUWQ/s1600/test_11.png
+.. ditaa::
+
+ +----------+
+ Drawing with |cYEL {s}|
+ ditaa + +
+ | emacs fu |
+ +----------+
+ ^
+ |
+ +--------+ +-------+ +-------+
+ |cGRE |-->+ ditaa +--> | |
+ | Text | +-------+ |diagram|
+ |Document| | magic!| | |
+ | {d}| |cBLU | | cRED |
+ +---+----+ +-------+ +-------+
+ ^
+ |
+ +--------+
+ |cPNK{io}|
+ | user |
+ +--------+
4. Usage
========
|