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