Reorganize documentation images into section-specific directories - #46
Merged
Conversation
- Move all local images from markdown directories to /public/get_started/ and /public/configuration/ for consistent absolute path resolution - Update all image references to use absolute /public paths - Fix h6 headings (######) in messages.md to h4 (####) for SY/BAPIRET/CX_ROOT sections - Fix typo in rfc.md: "on both system" → "on both systems" https://claude.ai/code/session_01Mx1pvV2fdu37as3XihYqcs
…wnporting The file advanced/advanced.md does not exist, causing a 404 error when clicking the "Advanced Topics" section header. Changed to point to the first page in the section. https://claude.ai/code/session_01Mx1pvV2fdu37as3XihYqcs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR reorganizes documentation images by moving them into section-specific subdirectories within
docs/public/to improve project structure and maintainability. All image references in markdown files have been updated to use absolute paths pointing to their new locations.Key Changes
Image reorganization: Moved images from
docs/public/root to section-specific directories:get_started/images →docs/public/get_started/configuration/images →docs/public/configuration/Updated image references: Changed all markdown image paths from relative (e.g.,
image-11.png) to absolute paths (e.g.,/get_started/image-11.png) in:docs/get_started/use_cases.mddocs/get_started/quickstart.mddocs/get_started/samples.mddocs/configuration/productive_usage.mddocs/configuration/troubleshooting.mdMinor fixes:
docs/development/messages.md(changed######to####for SY, BAPIRET, and CX_ROOT sections)docs/.vitepress/config.mjs(changed "Advanced Topics" link from/advanced/advancedto/advanced/downporting)docs/advanced/rfc.md("system" → "systems")Implementation Details
All image paths now use absolute paths from the documentation root, making them more robust and easier to maintain as the documentation structure evolves.
https://claude.ai/code/session_01Mx1pvV2fdu37as3XihYqcs