Fix example without markdown feature

This commit is contained in:
Alexandre Bury 2018-01-11 00:03:42 +01:00
parent 890b3f13e1
commit 5dcce6a965

View File

@ -1,6 +1,7 @@
extern crate cursive;
use cursive::Cursive;
#[cfg(feature = "markdown")]
use cursive::utils::markup::MarkdownText;
use cursive::views::{Dialog, TextView};
@ -11,8 +12,12 @@ use cursive::views::{Dialog, TextView};
fn main() {
let mut siv = Cursive::new();
#[cfg(feature = "markdown")]
let text = MarkdownText("Isn't *that* **cool**?");
#[cfg(not(feature = "markdown"))]
let text = "Rebuild with --features markdown ;)";
siv.add_layer(
Dialog::around(TextView::styled(text).unwrap())
.button("Hell yeah!", |s| s.quit()),