I've bumped Gemtext to v1.0.0. I've gone from "this is test code" to "this is stable code" mostly because the library is so simple and I'm unlikely to add any radically new features to it1.
This bump also has one small addition: I've added an alt_text property to the PreFormatted class. This exists to capture and make available any text that comes after the pre-formatted text marker. For example, this text:
```python
print("Hello, World!")
```
will now result in:
PreFormatted(content='print("Hello, World!")', alt_text='python')
If/when I add syntax highlighting of pre-formatted text blocks to Rogallo, this new property will make that possible.
I was thinking about adding a Gemtext builder class at some point, but I can't see a use for it any time soon. Perhaps v2.0.0. ↩