Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,18 @@ jobs:
git push origin "${TAG}"
fi

# The notes go through env, never through ${{ }} in the script. Expression
# substitution pastes the text into the script BEFORE bash parses it, so
# every backtick in the changelog (`display: flex`) was run as a command
# and the step died -- after the tag was pushed, so Deploy never started.
- name: Create the GitHub release
if: steps.cut.outputs.released == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ steps.cut.outputs.tag }}
NOTES: ${{ steps.cut.outputs.notes }}
run: |
gh release create "${{ steps.cut.outputs.tag }}" \
--title "${{ steps.cut.outputs.tag }}" \
--notes "${{ steps.cut.outputs.notes }}" \
gh release create "$TAG" --title "$TAG" --notes "$NOTES" \
|| echo "::notice::Release already exists."

# Always dispatch, unconditionally.
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dist/

# Planning docs stay local: direction and the task board are not published.
# They exist in the working tree, just not in the repo.
tmp
ROADMAP.md
TODO.md

Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,19 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

Nothing yet.
### Added
- HTML to Text: paste HTML and get readable plain text back. Paragraphs, lists
and tables keep their structure; `script`, `style`, `head`, `svg`, hidden
elements and icon ligatures (`role="img"`) are dropped, and entities are
decoded. Link URLs and class-based hidden detection (`.hidden`, `.sr-only`)
are optional toggles.

### Fixed
- v0.2.3 was tagged but never released or deployed. The Release workflow
pasted the changelog notes straight into a shell command, so the backticks in
them were executed as command substitution and the step failed after the tag
had been pushed, skipping Deploy. The notes are now passed through an
environment variable. This release ships the 0.2.3 fixes as well.

## [0.2.3] — 2026-09-24

Expand Down
Loading