Merge branch 'master' of github.com:azerupi/mdBook

This commit is contained in:
Mathieu David 2017-06-23 00:50:11 +02:00
commit 4128a78171
1 changed files with 6 additions and 1 deletions

View File

@ -36,7 +36,12 @@ pub fn render_playpen(s: &str, path: &Path) -> String {
continue;
};
let replacement = String::new() + "<pre><code class=\"language-rust\">" + &file_content + "</code></pre>";
let mut editable = "";
if playpen.editable {
editable = ",editable";
}
let replacement = String::new() + "``` rust" + editable + "\n" + &file_content + "\n```\n";
replaced.push_str(&s[previous_end_index..playpen.start_index]);
replaced.push_str(&replacement);