1. 24 août, 2023 2 validations
  2. 23 août, 2023 1 validation
  3. 22 août, 2023 4 validations
  4. 09 août, 2023 2 validations
  5. 06 août, 2023 8 validations
  6. 05 août, 2023 2 validations
  7. 04 août, 2023 1 validation
  8. 03 août, 2023 4 validations
  9. 16 juin, 2023 1 validation
  10. 31 mai, 2023 1 validation
  11. 15 mai, 2023 1 validation
  12. 12 mai, 2023 2 validations
  13. 13 avr., 2023 1 validation
  14. 08 mar., 2023 1 validation
  15. 07 mar., 2023 1 validation
  16. 27 fév., 2023 1 validation
  17. 22 fév., 2023 4 validations
  18. 16 fév., 2023 1 validation
  19. 13 fév., 2023 1 validation
  20. 02 fév., 2023 1 validation
    • John Kristensen's avatar
      Correctly strip leading white-space from markdown · ae652a8e
      John Kristensen a écrit
      If the markdown contains something that is indented by more that the
      `leadingTabs`/`leadingWs` then extra white space is incorrectly removed.
      ie the following example:
      
      ```
          <section data-markdown>
          some text
             indented text
                more indented text
          </section>
      ```
      
      would result in the following markdown:
      
      ```
      some text
         indented text
        more indented text
      ```
      
      We can work around this problem by using a function to generate the
      replace value.
      ae652a8e