@@ -29,25 +29,27 @@ pub fn render_with_highlighting(src: &str, class: Option<&str>, id: Option<&str>
29
29
30
30
let mut out = Vec :: new ( ) ;
31
31
write_header ( class, id, & mut out) . unwrap ( ) ;
32
- write_source ( & sess,
33
- lexer:: StringReader :: new ( & sess. span_diagnostic , fm) ,
34
- & mut out) . unwrap ( ) ;
32
+ if let Err ( _) = write_source ( & sess,
33
+ lexer:: StringReader :: new ( & sess. span_diagnostic , fm) ,
34
+ & mut out) {
35
+ return format ! ( "<pre>{}</pre>" , src)
36
+ }
35
37
write_footer ( & mut out) . unwrap ( ) ;
36
38
String :: from_utf8_lossy ( & out[ ..] ) . into_owned ( )
37
39
}
38
40
39
41
/// Highlights `src`, returning the HTML output. Returns only the inner html to
40
42
/// be inserted into an element. C.f., `render_with_highlighting` which includes
41
43
/// an enclosing `<pre>` block.
42
- pub fn render_inner_with_highlighting ( src : & str ) -> String {
44
+ pub fn render_inner_with_highlighting ( src : & str ) -> io :: Result < String > {
43
45
let sess = parse:: ParseSess :: new ( ) ;
44
46
let fm = sess. codemap ( ) . new_filemap ( "<stdin>" . to_string ( ) , src. to_string ( ) ) ;
45
47
46
48
let mut out = Vec :: new ( ) ;
47
49
write_source ( & sess,
48
50
lexer:: StringReader :: new ( & sess. span_diagnostic , fm) ,
49
- & mut out) . unwrap ( ) ;
50
- String :: from_utf8_lossy ( & out[ ..] ) . into_owned ( )
51
+ & mut out) ? ;
52
+ Ok ( String :: from_utf8_lossy ( & out[ ..] ) . into_owned ( ) )
51
53
}
52
54
53
55
/// Exhausts the `lexer` writing the output into `out`.
@@ -65,7 +67,17 @@ fn write_source(sess: &parse::ParseSess,
65
67
let mut is_macro = false ;
66
68
let mut is_macro_nonterminal = false ;
67
69
loop {
68
- let next = lexer. next_token ( ) ;
70
+ let next = match lexer. try_next_token ( ) {
71
+ Ok ( tok) => tok,
72
+ Err ( _) => {
73
+ lexer. emit_fatal_errors ( ) ;
74
+ lexer. span_diagnostic . struct_warn ( "Backing out of syntax highlighting" )
75
+ . note ( "You probably did not intend to render this \
76
+ as a rust code-block")
77
+ . emit ( ) ;
78
+ return Err ( io:: Error :: new ( io:: ErrorKind :: Other , "" ) )
79
+ } ,
80
+ } ;
69
81
70
82
let snip = |sp| sess. codemap ( ) . span_to_snippet ( sp) . unwrap ( ) ;
71
83
0 commit comments