Testing embedding of svg in markdown

This commit is contained in:
John Webb
2014-07-29 09:25:10 -05:00
parent bd103f996c
commit 4a2c2ef5bd
5 changed files with 75 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

35
Structural/Bridge/uml.txt Normal file
View File

@@ -0,0 +1,35 @@
@startuml
class Assemble {
+work()
}
class Car {
+__construct()
+manufacture()
}
class Motorcycle {
+__construct()
+manufacture()
}
class Produce {
+work()
}
abstract class Vehicle {
protected workShop1
protected workShop2
+__construct()
+manufacture()
}
interface Workshop {
+work()
}
Workshop <|.. Assemble
Workshop <|.. Produce
Vehicle <|.. Motorcycle
Vehicle <|.. Car
@enduml