1
0

.gitattributes 507 B

12345678910
  1. # This ensures that the line endings in any files added or modified are
  2. # normalized before being committed. On Windows they will automatically
  3. # be checked-out as CRLF, and re-converted to LF before check-in.
  4. # See https://git-scm.com/docs/gitattributes for more information.
  5. * text=auto
  6. # GitHub linguist ignores markdown files by default, but tldr-pages
  7. # is mostly markdown, so we explicitly make the pages detectable
  8. pages*/**/*.md linguist-detectable=true
  9. pages*/**/*.md linguist-documentation=false