about summary refs log tree commit diff
path: root/tests/ui/frontmatter
AgeCommit message (Collapse)AuthorLines
2025-09-26Ignore more failing ui tests for GCC backendGuillaume Gomez-0/+1
2025-09-22Fix a crash/mislex when more than one frontmatter closing possibility is ↵Alex-0/+31
considered
2025-09-09Strip frontmatter in fewer placesLeón Orell Valerian Liehr-17/+39
2025-09-01test(lexer): Ensure tabs are accepted for horizontal whitespaceEd Page-3/+5
2025-09-01test(lexer): Ensure frontmatter can contain unicode whitespaceEd Page-0/+22
2025-09-01test(lexer): Ensure frontmatter w/ crlf worksEd Page-0/+14
2025-08-28fix(lexer): Don't require frontmatters to be escaped with indented fencesEd Page-53/+38
The RFC only limits hyphens at the beginning of lines and not if they are indented or embedded in other content. Sticking to that approach was confirmed by the T-lang liason at https://github.com/rust-lang/rust/issues/141367#issuecomment-3202217544 There is a regression in error message quality which I'm leaving for someone if they feel this needs improving.
2025-08-22Rollup merge of #145751 - epage:infostring, r=joshtriplettJacob Pratt-0/+28
fix(lexer): Allow '-' in the frontmatter infostring continue set This more closely matches the RFC and what our T-lang contact has asked for, see https://github.com/rust-lang/rust/issues/136889#issuecomment-3212715312 Tracking issue: rust-lang/rust#136889
2025-08-22fix(lexer): Allow '-' in the infostring continue setEd Page-12/+2
This more closely matches the RFC and what our T-lang contact has asked for, see https://github.com/rust-lang/rust/issues/136889#issuecomment-3212715312
2025-08-22test(frontmatter): Show current hyphen behaviorEd Page-0/+38
2025-08-18ignore frontmatters in `TokenStream::new`Deadbeef-4/+3
2025-06-04Fix parsing of frontmatters with inner hyphensMatthew Jasper-0/+21
2025-05-05Implement RFC 3503: frontmattersDeadbeef-0/+567
Supercedes #137193