> With iA Writer 7 you can manually mark ChatGPT’s contributions as AI text. AI text is greyed out. This allows you to separate and control what you borrow and what you type. By splitting what you type and what you pasted, you can make sure that you speak your mind with your voice, rhythm and tone.
1. it doesn’t work with the existing de facto standard for markdown metadata, i.e., the YAML frontmatters; the markdown standard is already too fractured to have a new extension;
2. it messes with types by using YAML strings for arrays and integers;
3. it’s inefficient — any change in the file would demand iterating through all recorded ranges and updating the offsets.
3 comments
[ 3.8 ms ] story [ 17.1 ms ] threadFrom their Markdown Annotations specs [0], the authorship is recorded in a quasi-YAML block at the end of the file, e.g.,—
The format is bad for multiple reasons:1. it doesn’t work with the existing de facto standard for markdown metadata, i.e., the YAML frontmatters; the markdown standard is already too fractured to have a new extension;
2. it messes with types by using YAML strings for arrays and integers;
3. it’s inefficient — any change in the file would demand iterating through all recorded ranges and updating the offsets.
I’d prefer it to adopt the YAML frontmatters:
[0]: https://github.com/iainc/Markdown-Annotations