added support for images in markdown, and for rendered html

This commit is contained in:
2026-03-09 13:23:31 +01:00
parent ba6705d798
commit 2a63f44c59
6 changed files with 338 additions and 156 deletions

View File

@@ -1,3 +1,19 @@
# Sword of Conjuring
This is a sword what do you expect
Here's some rendered html:
```html
<div style="background: #2d3149; padding: 10px; border-radius: 10px; border: 2px solid #8aadf4;">
<p>You can use <strong>raw HTML</strong> inside wiki pages:</p>
<button onclick="alert('It works!')">Click Me</button>
</div>
```
```rendered_html
<div style="background: #2d3149; padding: 10px; border-radius: 10px; border: 2px solid #8aadf4;">
<p>You can use <strong>raw HTML</strong> inside wiki pages:</p>
<button onclick="alert('It works!')">Click Me</button>
</div>
```