Description
There is an inconsistency in image file extension casing in the architecture documentation, which can cause issues on case-sensitive file systems (Linux, macOS).
In content/en/docs/architecture.md, image references use mixed casing for .png file extensions. This may work on case-insensitive systems (e.g., Windows) but can break image loading on others and reflects inconsistent naming conventions.
Location
File:
content/en/docs/architecture.md
Current Code
{{<figure library="1" src="arch_1.png" title="Application scenarios of Volcano">}}
{{<figure library="1" src="arch_2.PNG" title="Volcano architecture">}}
Expected Behavior
All image file extensions should use consistent lowercase casing (e.g., .png) to ensure cross-platform compatibility and follow best practices.
Description
There is an inconsistency in image file extension casing in the architecture documentation, which can cause issues on case-sensitive file systems (Linux, macOS).
In
content/en/docs/architecture.md, image references use mixed casing for.pngfile extensions. This may work on case-insensitive systems (e.g., Windows) but can break image loading on others and reflects inconsistent naming conventions.Location
File:
content/en/docs/architecture.mdCurrent Code
{{<figure library="1" src="arch_1.png" title="Application scenarios of Volcano">}} {{<figure library="1" src="arch_2.PNG" title="Volcano architecture">}}Expected Behavior
All image file extensions should use consistent lowercase casing (e.g., .png) to ensure cross-platform compatibility and follow best practices.