Просмотр исходного кода

feat: added ".out" files for latex

(exa PR) 1184
Christina Sørensen 2 лет назад
Родитель
Сommit
5f29705cc5
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      src/info/sources.rs

+ 2 - 1
src/info/sources.rs

@@ -32,7 +32,8 @@ impl<'a> File<'a> {
                 "lof" |                                          // TeX list of figures
                 "log" |                                          // TeX log file
                 "lot" |                                          // TeX list of tables
-                "toc" |                                          // TeX table of contents
+                "out" => vec![self.path.with_extension("tex")],  // hyperref list of bookmarks
+                "toc" => vec![self.path.with_extension("tex")],  // TeX table of contents
                 "xdv" => vec![self.path.with_extension("tex")],  // XeTeX dvi
 
                 _ => vec![],  // No source files if none of the above