Skip to content
  1. Dec 17, 2015
  2. Dec 12, 2015
  3. Dec 09, 2015
  4. Oct 22, 2015
  5. Oct 14, 2015
  6. Jun 30, 2015
  7. Jun 15, 2015
  8. Jun 11, 2015
  9. Jun 10, 2015
  10. Jun 08, 2015
  11. Jun 01, 2015
  12. 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
  13. May 08, 2015
  14. May 07, 2015
  15. May 01, 2015
    • Raniere Silva's avatar
      Merge pull request #228 from r-gaia-cs/core-fix-gloss-check · c70bebd3
      Raniere Silva authored
      Fix check of glossary item
      c70bebd3
    • 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
  16. Apr 25, 2015
  17. Apr 20, 2015
  18. Apr 19, 2015