adrianvlupu / C4-Builder

This is a documentation builder. You feed it .md and .puml and it exports a site, pdf, or a markdown with navigation.

Home Page:https://adrianvlupu.github.io/C4-Builder/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Diagrams at arbitrary positions not working for more than one file

vellala2000 opened this issue · comments

When there is more than one ![name](name.puml) in a .md file, build replacing all the file with the first one.

// test.md file

![name1](name1.puml) 
![name2](name2.puml) 

after running build all .puml references are replace with first .svg file,

//afterbuild.md file

![diagram](name1.svg)
![diagram](name1.svg)

expected

//afterbuild.md file

![diagram](name1.svg)
![diagram](name2.svg)

You are right, MickeJohannesson fixed it. It should be ok now.