This repository has been archived on 2026-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GitBlog.md/uml/article.txt
T
2019-06-18 20:14:37 +02:00

30 lines
469 B
Plaintext

@startuml
title Article
cloud web
node nodejs {
TCP -right- [express]
[showdown]
}
package data {
[template.ejs]
package "2019/06/18" {
component index [
index.md
image.png
...
]
}
}
web -down-> TCP : 1. /2019/06/18/title
express -down-> index : 2. fetch
index -up-> showdown : 3. markdown
template.ejs -up-> express : 4
showdown -left-> express : 4. html
express -up-> web : 5. html
@enduml