From 620022c0a21eef5139c3bc1aaa081a434c151ff7 Mon Sep 17 00:00:00 2001 From: Christopher Warrington Date: Mon, 13 Jun 2016 12:50:36 -0700 Subject: [PATCH] Don't download and embed images for C# docs (#179) With the `--self-contained` flag to Pandoc, we were downloading the NuGet version badges at build time and embedding them in the generated HTML as data URIs. We actually want those to be fetched anew each time someone renders the page so they see the latest version, not the version that was current when the page was generated. This should also get rid of the build failures we were seeing when shields.io was down. --- doc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index c3ad6b0a..5cc0eced 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -99,7 +99,7 @@ if (Haskell_PANDOC_EXECUTABLE AND Doxygen_EXECUTABLE) add_pandoc_markdown (src/bond_cs.md CODE "cs,numberLines" - OPTIONS --self-contained --table-of-contents + OPTIONS --table-of-contents OUTPUT_DIR manual) add_pandoc_markdown (src/reference_index.md