mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 18:30:40 +00:00
Fix markdown tests
This commit is contained in:
parent
ac28309b3b
commit
ea9d215fa3
@ -5,5 +5,5 @@ rust:
|
||||
- nightly
|
||||
script:
|
||||
- cargo check --all-features
|
||||
- cargo build --verbose --features "pancurses-backend termion-backend"
|
||||
- cargo test --verbose --features "pancurses-backend termion-backend"
|
||||
- cargo build --verbose --features "markdown pancurses-backend termion-backend"
|
||||
- cargo test --verbose --features "markdown pancurses-backend termion-backend"
|
||||
|
@ -160,34 +160,42 @@ I *really* love __Cursive__!";
|
||||
&[
|
||||
Span {
|
||||
content: "# ",
|
||||
width: 2,
|
||||
attr: &Style::none(),
|
||||
},
|
||||
Span {
|
||||
content: "Attention",
|
||||
width: 9,
|
||||
attr: &Style::none(),
|
||||
},
|
||||
Span {
|
||||
content: "\n\n",
|
||||
width: 0,
|
||||
attr: &Style::none(),
|
||||
},
|
||||
Span {
|
||||
content: "I ",
|
||||
width: 2,
|
||||
attr: &Style::none(),
|
||||
},
|
||||
Span {
|
||||
content: "really",
|
||||
width: 6,
|
||||
attr: &Style::from(Effect::Italic),
|
||||
},
|
||||
Span {
|
||||
content: " love ",
|
||||
width: 6,
|
||||
attr: &Style::none(),
|
||||
},
|
||||
Span {
|
||||
content: "Cursive",
|
||||
width: 7,
|
||||
attr: &Style::from(Effect::Bold),
|
||||
},
|
||||
Span {
|
||||
content: "!",
|
||||
width: 1,
|
||||
attr: &Style::none(),
|
||||
}
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user