Assets Directory
This directory contains assets for the documentation site, including images, CSS, and JavaScript files.
Directory Structure
assets/
├── images/ # Images used in documentation
│ ├── author-profile-block.png
│ ├── author-grid-block.png
│ ├── author-carousel-block.png
│ ├── author-list-block.png
│ ├── author-profile-fields.png
│ ├── position-field.png
│ ├── description-field.png
│ ├── member-since-label-field.png
│ ├── social-media-fields.png
│ ├── author-picker.png
│ ├── style-options.png
│ ├── theme-colors.png
│ └── [other block-specific images]
├── css/ # Custom CSS files (if needed)
│ └── custom.css
└── js/ # JavaScript files (if needed)
└── custom.js
Adding Images
When adding images to the documentation:
- Place the image file in the
assets/images/
directory - Use relative paths in Markdown files:

- Optimize images for web (compress and resize as needed)
- Use descriptive filenames that match the content they represent
Image Conventions
- Screenshots: Use 1280×800 pixels with browser chrome visible when appropriate
- UI Elements: Crop to show only the relevant part of the interface
- Diagrams: Use SVG format when possible for better scaling
- Maximum Width: Keep images under 1200px wide for better display on all devices
CSS Customization
If you need to add custom styling to the documentation site, add your CSS to assets/css/custom.css
.
JavaScript Customization
If you need to add custom JavaScript functionality to the documentation site, add your JavaScript to assets/js/custom.js
.