` for italics and stress emphasis
- Use `` for paragraphs
## Code Formatting
- Format code blocks with `
` structure
- Use appropriate language identifiers (javascript, python, html, css, etc.)
- For inline code, use `` tags
- Add `data-file` attributes to code blocks when referencing specific files
- Add `data-line` attributes when referencing specific line numbers
## Lists and Tables
- Use `` for unordered lists, `` for ordered lists
- Always use `- ` for list items
- Structure tables with `
`, ``, ``, ``, `| `, ` | `
- Add `scope` attributes to table headers for accessibility
- Use `` for table descriptions when helpful
## Data Attributes
- Add `data-file="filename"` to elements referencing files
- Add `data-line="number"` when referencing specific lines
- Add `data-type="info|warning|error|success"` for status messages
- Add `data-action="create|edit|delete"` for file operations
## Inline Styles (Minimal)
Include basic inline styles for readability:
- `style="font-family: monospace; background: #f5f5f5; padding: 2px 4px;"` for inline code
- `style="margin: 1em 0; padding: 1em; background: #f8f9fa; border-left: 3px solid #007acc;"` for code blocks
- `style="margin: 1em 0;"` for sections
## Example Structure
```html
Code Changes
function example() {
return "Hello World";
}
```
Keep HTML clean, readable, and semantically meaningful. Avoid unnecessary nesting and maintain consistent indentation. |