fix: Escape markup in poll options #379
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Poll option titles can currently be interpreted as html, causing them to be displayed incorrectly at times. This is inconsistent with other Mastodon/ActivityPub clients. All documentation on how poll options should be formatted also seems to point to them only ever being plain text.
This small change escapes characters that can be interpreted as markup when rendering polls.
Before:
![screenshot_2023-07-14T09:13:48](https://private-user-images.githubusercontent.com/7573/253623954-29662a9c-b2dc-471a-9eaa-24bb776b1104.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwMzAzMjYsIm5iZiI6MTczOTAzMDAyNiwicGF0aCI6Ii83NTczLzI1MzYyMzk1NC0yOTY2MmE5Yy1iMmRjLTQ3MWEtOWVhYS0yNGJiNzc2YjExMDQucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIwOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMDhUMTU1MzQ2WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9YjRlNzY2MWU1YmI4ZThmZmI3N2UzOTE1MmE2NjllZTM5YjA4MmE0NTdiNWZmMTM5ZTUyMjE1NzUyMjEyMDhkZiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.AyMJTBEycRgRzo5wYpkUf34oyJ54oas3z-sgWIp5H7w)
After:
![screenshot_2023-07-14T09:11:44](https://private-user-images.githubusercontent.com/7573/253623997-dddfa6d4-c6e1-4302-9a15-19a5ea39b1cd.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwMzAzMjYsIm5iZiI6MTczOTAzMDAyNiwicGF0aCI6Ii83NTczLzI1MzYyMzk5Ny1kZGRmYTZkNC1jNmUxLTQzMDItOWExNS0xOWE1ZWEzOWIxY2QucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIwOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMDhUMTU1MzQ2WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ODUxYjdhMTgzMzZhNWM3ZjQ3ODlhMGM4MDJlMTIxNWI3MTk5ZjQ4NjBkMGY5NmJlMmIyOWU3MjA2YjY5NTI1YiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.oZsv_EPGgXJtvkXQf32xOo3fICzj_uVBR8IYBh0VYHw)