Ditaa and plantuml

Commit
7d90740fad35b91fa6960f672fe96bb18bd21f51
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
smart-documents.org
index f4d164e0..a0101ac5 100644..100644
@@ -789,26 +789,52 @@
789 789 :defer t)
790 790 #+END_SRC
791 791
792 Removed: *** Drawing & diagrams
792 Added: *** Drawings
793 793
794 Removed: #+BEGIN_SRC emacs-lisp :tangle yes
795 Removed: (use-package plantuml)
796 794
797 Removed: #+END_SRC
798 795
799 796 #+BEGIN_SRC ditaa :file ditaa.png
800 Removed: +-----------+ +-----------------+
801 Removed: | c06F | | c06F |
802 Removed: | Create a | | Open the source |
803 Removed: | source | | block and |
804 Removed: | block for | | start drawing! |
805 Removed: | ditaa | | |
806 Removed: +-----------+ +-----------------+
797 Added: +-----------+ +-----------------+
798 Added: | c06F | | c06F |
799 Added: | Create a | | Open the source |
800 Added: | source |--->| block and |
801 Added: | block for | | start drawing! |
802 Added: | ditaa | | |
803 Added: +-----------+ +-----------------+
807 804 #+END_SRC
808 805
809 806 #+RESULTS:
810 807 [[file:ditaa.png]]
811 808
809 Added: *** TODO Diagrams
810 Added: # Implement automatically downloading this kind of executable!
811 Added:
812 Added: #+BEGIN_SRC emacs-lisp :tangle yes
813 Added: (setq org-plantuml-jar-path
814 Added: (concat user-emacs-directory
815 Added: "execs/plantuml.jar"))
816 Added: #+END_SRC
817 Added:
818 Added: #+BEGIN_SRC plantuml :file uml.png
819 Added: !theme plain
820 Added: package "Package 1" as pkg1 {
821 Added: node node1
822 Added: node node2
823 Added: }
824 Added: package "Package 2" as pkg2 {
825 Added: component "Component 1" as comp1
826 Added: component "Component 2" as comp2
827 Added: interface "Interface" as int
828 Added: }
829 Added:
830 Added: pkg1 .. pkg2
831 Added:
832 Added: comp1 --> int
833 Added: comp2 --> int
834 Added: #+END_SRC
835 Added:
836 Added: #+RESULTS:
837 Added: [[file:uml.png]]
812 838
813 839 ** Coding languages
814 840