Special Characters Skill
This skill tests handling of special characters in various contexts.
Unicode Support
Testing unicode characters: 你好, привет, مرحبا, こんにちは
Special Symbols
Testing various symbols and punctuation:
- Quotes: "double" and 'single'
- Mathematical: ∑, ∫, ∂, ∞, ≈, ≠
- Currency: $, €, £, ¥, ₹
- Arrows: →, ←, ↑, ↓, ⇒, ⇐
- Symbols: ©, ®, ™, ±, ×, ÷
Markdown Edge Cases
Testing markdown special characters:
- Asterisks: * and **
- Underscores: _ and __
- Backticks: ` and ```
- Brackets: [link] and (url)
- Hash: # heading
Code Blocks
function test() {
const str = "Testing special chars: <>&\"'";
return str.replace(/[<>&"']/g, (c) => entities[c]);
}
HTML Entities
Testing HTML entity handling: <, >, &, ", '
This skill ensures proper handling of special characters throughout the parsing and rendering pipeline.
1---2name: special-chars-skill3description: A skill testing special characters: quotes "test", apostrophes 'test', and symbols !@#$%4---56# Special Characters Skill78This skill tests handling of special characters in various contexts.910## Unicode Support1112Testing unicode characters: 你好, привет, مرحبا, こんにちは1314## Special Symbols1516Testing various symbols and punctuation:17- Quotes: "double" and 'single'18- Mathematical: ∑, ∫, ∂, ∞, ≈, ≠19- Currency: $, €, £, ¥, ₹20- Arrows: →, ←, ↑, ↓, ⇒, ⇐21- Symbols: ©, ®, ™, ±, ×, ÷2223## Markdown Edge Cases2425Testing markdown special characters:26- Asterisks: * and **27- Underscores: _ and __28- Backticks: ` and ```29- Brackets: [link] and (url)30- Hash: # heading3132## Code Blocks3334```javascript35function test() {36 const str = "Testing special chars: <>&\"'";37 return str.replace(/[<>&"']/g, (c) => entities[c]);38}39```4041## HTML Entities4243Testing HTML entity handling: <, >, &, ", '4445This skill ensures proper handling of special characters throughout the parsing and rendering pipeline.