1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
use std::collections::HashMap;
use std::collections::HashSet;
use std::fs::File;
use std::io::prelude::*;
use std::path::{Path, PathBuf};
use std::vec::Vec;
use lazy_static::lazy_static;
use regex::Regex;
use serde_derive::{Deserialize, Serialize};
use mdbook::book::{Book, BookItem};
use mdbook::errors::Error;
use mdbook::errors::Result;
use mdbook::preprocess::{Preprocessor, PreprocessorContext};
use mdbook::renderer::{RenderContext, Renderer};
use mdbook::utils::fs::path_to_root;
#[derive(Deserialize, Serialize)]
#[serde(default, rename_all = "kebab-case")]
pub struct KatexConfig {
pub leqno: bool,
pub fleqn: bool,
pub throw_on_error: bool,
pub error_color: String,
pub min_rule_thickness: f64,
pub max_size: f64,
pub max_expand: i32,
pub trust: bool,
pub static_css: bool,
pub macros: Option<String>,
}
impl Default for KatexConfig {
fn default() -> KatexConfig {
KatexConfig {
leqno: false,
fleqn: false,
throw_on_error: true,
error_color: String::from("#cc0000"),
min_rule_thickness: -1.0,
max_size: f64::INFINITY,
max_expand: 1000,
trust: false,
static_css: false,
macros: None,
}
}
}
fn enforce_config(cfg: &mdbook::Config) {
if cfg.get("preprocessor.katex").is_none() {
panic!("Missing `[preprocessor.katex]` directive in `book.toml`!");
}
if cfg.get("output.katex").is_none() {
panic!("Missing `[output.katex]` directive in `book.toml`!");
}
if cfg.get("output.html").is_none() {
panic!("The katex preprocessor is only compatible with the html renderer!");
}
}
pub struct KatexProcessor;
impl Renderer for KatexProcessor {
fn name(&self) -> &str {
"katex"
}
fn render(&self, ctx: &RenderContext) -> Result<()> {
enforce_config(&ctx.config);
Ok(())
}
}
impl Preprocessor for KatexProcessor {
fn name(&self) -> &str {
"katex"
}
fn run(&self, ctx: &PreprocessorContext, mut book: Book) -> Result<Book, Error> {
enforce_config(&ctx.config);
let cfg = get_config(&ctx.config)?;
let (inline_opts, display_opts) = self.build_opts(ctx, &cfg);
let stylesheet_header_generator =
katex_header(&ctx.root, &ctx.config.build.build_dir, &cfg)?;
book.for_each_mut(|item| {
if let BookItem::Chapter(chapter) = item {
if let Some(path) = &chapter.path {
let stylesheet_header = stylesheet_header_generator(path_to_root(path.clone()));
chapter.content = self.process_chapter(
&chapter.content,
&inline_opts,
&display_opts,
&stylesheet_header,
)
}
}
});
Ok(book)
}
fn supports_renderer(&self, renderer: &str) -> bool {
renderer == "html" || renderer == "katex"
}
}
impl KatexProcessor {
fn build_opts(
&self,
ctx: &PreprocessorContext,
cfg: &KatexConfig,
) -> (katex::Opts, katex::Opts) {
let configure_katex_opts = || -> katex::OptsBuilder {
katex::Opts::builder()
.leqno(cfg.leqno)
.fleqn(cfg.fleqn)
.throw_on_error(cfg.throw_on_error)
.error_color(cfg.error_color.clone())
.min_rule_thickness(cfg.min_rule_thickness)
.max_size(cfg.max_size)
.max_expand(cfg.max_expand)
.trust(cfg.trust)
.clone()
};
let macros = Self::load_macros(ctx, &cfg.macros);
let inline_opts = configure_katex_opts()
.display_mode(false)
.output_type(katex::OutputType::Html)
.macros(macros.clone())
.build()
.unwrap();
let display_opts = configure_katex_opts()
.display_mode(true)
.output_type(katex::OutputType::Html)
.macros(macros)
.build()
.unwrap();
(inline_opts, display_opts)
}
fn load_macros(
ctx: &PreprocessorContext,
macros_path: &Option<String>,
) -> HashMap<String, String> {
let mut map = HashMap::new();
if let Some(path) = get_macro_path(&ctx.root, macros_path) {
let macro_str = load_as_string(&path);
for couple in macro_str.split('\n') {
if let Some('\\') = couple.chars().next() {
let couple: Vec<&str> = couple.splitn(2, ':').collect();
map.insert(String::from(couple[0]), String::from(couple[1]));
}
}
}
map
}
fn process_chapter(
&self,
raw_content: &str,
inline_opts: &katex::Opts,
display_opts: &katex::Opts,
stylesheet_header: &str,
) -> String {
let mut rendered_content = stylesheet_header.to_owned();
const CODE_BLOCK_DELIMITER: &str = "```";
const INLINE_CODE_DELIMITER: char = '`';
let mut outside_code_block = false;
for block in raw_content.split(CODE_BLOCK_DELIMITER) {
outside_code_block = !outside_code_block;
if outside_code_block {
let mut outside_inline_code = false;
for mut blob in block.split(INLINE_CODE_DELIMITER) {
outside_inline_code = !outside_inline_code;
if outside_inline_code {
let escape_next_backtick = blob.ends_with('\\');
if escape_next_backtick {
outside_inline_code = false;
blob = &blob[..(blob.len() - 1)]
}
let content =
Self::render_between_delimiters(blob, "$$", display_opts, false);
let content =
Self::render_between_delimiters(&content, "$", inline_opts, true);
rendered_content.push_str(&content);
if escape_next_backtick {
rendered_content.push(INLINE_CODE_DELIMITER);
}
} else {
rendered_content.push(INLINE_CODE_DELIMITER);
rendered_content.push_str(blob);
rendered_content.push(INLINE_CODE_DELIMITER);
}
}
} else {
rendered_content.push_str(CODE_BLOCK_DELIMITER);
rendered_content.push_str(block);
rendered_content.push_str(CODE_BLOCK_DELIMITER);
}
}
rendered_content
}
fn render_between_delimiters(
raw_content: &str,
delimiters: &str,
opts: &katex::Opts,
escape_backslash: bool,
) -> String {
let mut rendered_content = String::new();
let mut inside_delimiters = false;
for item in Self::split(raw_content, delimiters, escape_backslash) {
if inside_delimiters {
if let Ok(rendered) = katex::render_with_opts(&item, opts) {
rendered_content.push_str(&rendered.replace('\n', " "))
} else {
rendered_content.push_str(&item)
}
} else {
rendered_content.push_str(&item)
}
inside_delimiters = !inside_delimiters;
}
rendered_content
}
fn split(string: &str, separator: &str, escape_backslash: bool) -> Vec<String> {
let mut result = Vec::new();
let mut splits = string.split(separator);
let mut current_split = splits.next();
while let Some(substring) = current_split {
let mut result_split = String::from(substring);
if escape_backslash {
while let Some('\\') = current_split.unwrap().chars().last() {
result_split.pop();
result_split.push_str(separator);
current_split = splits.next();
if let Some(split) = current_split {
result_split.push_str(split);
}
}
}
result.push(result_split);
current_split = splits.next()
}
result
}
}
pub fn get_macro_path(root: &Path, macros_path: &Option<String>) -> Option<PathBuf> {
macros_path
.as_ref()
.map(|path| root.join(PathBuf::from(path)))
}
pub fn get_config(book_cfg: &mdbook::Config) -> Result<KatexConfig, toml::de::Error> {
let cfg = match book_cfg.get("preprocessor.katex") {
Some(raw) => raw.clone().try_into(),
None => Ok(KatexConfig::default()),
};
cfg.or_else(|_| Ok(KatexConfig::default()))
}
pub fn load_as_string(path: &Path) -> String {
let display = path.display();
let mut file = match File::open(path) {
Err(why) => panic!("couldn't open {}: {}", display, why),
Ok(file) => file,
};
let mut string = String::new();
if let Err(why) = file.read_to_string(&mut string) {
panic!("couldn't read {}: {}", display, why)
};
string
}
fn katex_header(
build_root: &Path,
build_dir: &Path,
cfg: &KatexConfig,
) -> Result<Box<dyn Fn(String) -> String>, Error> {
let cdn_root = "https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/";
let stylesheet_url = format!("{}katex.min.css", cdn_root);
let integrity = "sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X";
if cfg.static_css {
let mut katex_dir_path = build_root.join(build_dir);
katex_dir_path.push("html/katex");
if !katex_dir_path.exists() {
std::fs::create_dir_all(katex_dir_path.as_path())?;
}
let mut stylesheet_path = katex_dir_path.clone();
stylesheet_path.push("katex.min.css");
let mut stylesheet: String;
if !stylesheet_path.exists() {
let stylesheet_response = reqwest::blocking::get(stylesheet_url)?;
stylesheet = String::from(std::str::from_utf8(&stylesheet_response.bytes()?)?);
let mut stylesheet_file = File::create(stylesheet_path.as_path())?;
stylesheet_file.write_all(stylesheet.as_str().as_bytes())?;
} else {
stylesheet = String::new();
let mut stylesheet_file = File::open(stylesheet_path.as_path())?;
stylesheet_file.read_to_string(&mut stylesheet)?;
}
lazy_static! {
static ref URL_PATTERN: Regex = Regex::new(r"(url)\s*[(]([^()]*)[)]").unwrap();
static ref REL_PATTERN: Regex = Regex::new(r"[.][.][/\\]|[.][/\\]").unwrap();
}
let mut resources: HashSet<String> = HashSet::new();
for capture in URL_PATTERN.captures_iter(&stylesheet) {
let resource_name = String::from(&capture[2]);
let mut resource_path = katex_dir_path.clone();
resource_path.push(&resource_name);
resource_path = PathBuf::from(String::from(
REL_PATTERN.replace_all(resource_path.to_str().unwrap(), ""),
));
if !resource_path.as_path().exists() {
if resources.insert(String::from(&capture[2])) {
let mut resource_parent_dir = resource_path.clone();
resource_parent_dir.pop();
std::fs::create_dir_all(resource_parent_dir.as_path())?;
let mut resource_file = File::create(resource_path)?;
let resource_url = format!("{}{}", cdn_root, &resource_name);
let resource_response = reqwest::blocking::get(&resource_url)?;
resource_file.write_all(&resource_response.bytes()?)?;
}
}
}
Ok(Box::new(move |path: String| -> String {
format!(
"<link rel=\"stylesheet\" href=\"{}katex/katex.min.css\">\n\n",
path,
)
}))
} else {
let stylesheet = format!(
"<link rel=\"stylesheet\" href=\"{}\" integrity=\"{}\" crossorigin=\"anonymous\">\n\n",
stylesheet_url, integrity,
);
Ok(Box::new(move |_: String| -> String { stylesheet.clone() }))
}
}
#[cfg(test)]
mod tests;