aboutsummaryrefslogblamecommitdiffstats
path: root/tests/misc_soft_break.rs
blob: 1342eeea17972fe8141c4eb45a9244da082ac02d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                      
                                 

       
                 
               
                            



                                     
               
                              


                                                
 
use markdown::to_html;
use pretty_assertions::assert_eq;

#[test]
fn soft_break() {
    assert_eq!(
        to_html("foo\nbaz"),
        "<p>foo\nbaz</p>",
        "should support line endings"
    );

    assert_eq!(
        to_html("foo \n baz"),
        "<p>foo\nbaz</p>",
        "should trim spaces around line endings"
    );
}