Skip to content
Snippets Groups Projects
  1. Jun 08, 2015
  2. May 10, 2015
    • Raniere Silva's avatar
      Avoid wrong error with links at index.md · cce9c649
      Raniere Silva authored
      We don't validate links to glossary
      but we validate links from index.md
      to ensure that their text
      and the title of the lesson it point to
      are the same.
      
      This exclude links point to one address with '#'
      since it probably points to a glossary entry.
      cce9c649
  3. May 08, 2015
  4. May 07, 2015
  5. May 01, 2015
    • Raniere Silva's avatar
      Fix check of glossary item · 45dbfcdc
      Raniere Silva authored
      CommonMark doesn't support definition list
      and we have to workaround this limitation.
      
      This commit removes the request
      that line continuation start with four white spaces
      because (1) CommonMark remove the white spaces and
      (2) Pandoc doesn't care about it.
      
          $ pandoc <<EOF
          foo
          :   bar
              continue
          EOF
          <dl>
          <dt>foo</dt>
          <dd>bar continue
          </dd>
          </dl>
          $ pandoc <<EOF
          foo
          :   bar
          continue
          EOF
          <dl>
          <dt>foo</dt>
          <dd>bar continue
          </dd>
          </dl>
      45dbfcdc
  6. Apr 10, 2015
  7. Apr 07, 2015
  8. Apr 04, 2015
  9. Mar 21, 2015
  10. Mar 19, 2015
  11. Mar 04, 2015
  12. Feb 17, 2015
  13. Feb 12, 2015
  14. Feb 10, 2015
  15. Feb 07, 2015
  16. Feb 05, 2015
  17. Jan 31, 2015
    • Andy Boughton's avatar
      Add validation for callout boxes · 6cd77e30
      Andy Boughton authored
      Implement template-specific callout rules. Add tests and fix bugs revealed.
      
      Narrow def of callout: block must have heading.
      
      Simplify way that callout counts are tracked, improve log messages, and add further unit tests of callout validation.
      
      Ensure that callout validation is actually run
      6cd77e30
  18. Jan 28, 2015
  19. Jan 23, 2015
  20. Jan 22, 2015
  21. Jan 21, 2015
  22. Jan 19, 2015
  23. Jan 16, 2015
  24. Jan 14, 2015
    • Greg Wilson's avatar
      Improving support for R Markdown. · fae85a08
      Greg Wilson authored
      1.  Adding `tools/chunk-options.R` with support for Pandoc-based conversion of R Markdown to plain Markdown.
      2.  Modifying `Makefile` to handle any R Markdown files that are present.
      
      Changes have been checked by @jdblischak in the `r-novice-inflammation` project.
      fae85a08
  25. Jan 07, 2015
  26. Jan 06, 2015
  27. Jan 04, 2015
  28. Jan 03, 2015
  29. Dec 21, 2014
  30. Dec 19, 2014
  31. Dec 15, 2014