tuned whitespace;
authorwenzelm
Wed, 28 Nov 2018 14:40:06 +0100
changeset 69362 77c93eaf6cb7
parent 69361 0d84e3db67c2
child 69363 0675481ce575
tuned whitespace;
src/Pure/Thy/html.scala
src/Pure/Thy/present.scala
--- a/src/Pure/Thy/html.scala	Wed Nov 28 14:05:03 2018 +0100
+++ b/src/Pure/Thy/html.scala	Wed Nov 28 14:40:06 2018 +0100
@@ -368,7 +368,8 @@
         (if (entry.is_italic) List("  font-style: italic;") else Nil) :::
         List("}"))
 
-    ("/* Isabelle fonts */" :: Isabelle_Fonts.fonts(html = true).map(font_face(_))).mkString("\n\n")
+    ("/* Isabelle fonts */" :: Isabelle_Fonts.fonts(html = true).map(font_face(_)))
+      .mkString("", "\n\n", "\n")
   }
 
 
@@ -379,7 +380,7 @@
   def write_isabelle_css(dir: Path, make_url: String => String = fonts_dir("fonts"))
   {
     File.write(dir + isabelle_css.base,
-      fonts_css(make_url) + "\n\n\n" + File.read(isabelle_css))
+      fonts_css(make_url) + "\n\n" + File.read(isabelle_css))
   }
 
   def init_dir(dir: Path)
--- a/src/Pure/Thy/present.scala	Wed Nov 28 14:05:03 2018 +0100
+++ b/src/Pure/Thy/present.scala	Wed Nov 28 14:40:06 2018 +0100
@@ -117,7 +117,7 @@
     def output_document(title: String, body: XML.Body): String =
       HTML.output_document(
         List(
-          HTML.style(HTML.fonts_css(fonts_url) + File.read(HTML.isabelle_css)),
+          HTML.style(HTML.fonts_css(fonts_url) + "\n\n" + File.read(HTML.isabelle_css)),
           HTML.title(title)),
         List(HTML.source(body)), css = "", structural = false)