Skip to content
  1. Jun 30, 2015
  2. Jun 15, 2015
  3. Jun 11, 2015
  4. Jun 10, 2015
  5. Jun 08, 2015
  6. Jun 01, 2015
  7. 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
  8. May 08, 2015
  9. May 07, 2015
  10. 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
  11. Apr 25, 2015
  12. Apr 20, 2015
  13. Apr 19, 2015
  14. Apr 15, 2015