src/Pure/Thy/bibtex.scala
changeset 77369 df17355f1e2c
parent 77368 7c57d9586f4c
child 78614 4da5cdaa4dcd
equal deleted inserted replaced
77368:7c57d9586f4c 77369:df17355f1e2c
   678 
   678 
   679       Isabelle_System.bash(
   679       Isabelle_System.bash(
   680         "\"$BIB2XHTML_HOME/main/bib2xhtml.pl\" -B \"$ISABELLE_BIBTEX\"" +
   680         "\"$BIB2XHTML_HOME/main/bib2xhtml.pl\" -B \"$ISABELLE_BIBTEX\"" +
   681           " -u -s " + Bash.string(proper_string(style) getOrElse "empty") +
   681           " -u -s " + Bash.string(proper_string(style) getOrElse "empty") +
   682           (if (chronological) " -c" else "") +
   682           (if (chronological) " -c" else "") +
   683           (if (title != "") " -h " + Bash.string(title) + " " else "") +
   683           if_proper(title, " -h " + Bash.string(title) + " ") +
   684           " " + File.bash_path(in_file) + " " + File.bash_path(out_file),
   684           " " + File.bash_path(in_file) + " " + File.bash_path(out_file),
   685         cwd = tmp_dir.file).check
   685         cwd = tmp_dir.file).check
   686 
   686 
   687       val html = File.read(tmp_dir + out_file)
   687       val html = File.read(tmp_dir + out_file)
   688 
   688