wiki/structured/web.forges.recognize-plain-text-documents.org
Gabriel Arazas 377850d0d1 Update notebook and clean up the folder
I also forget to add the additional solutions from the Exercism
exercises. Whoops...

I'm also getting used to storing code in random places. Time to change
that habit a little bit by storing them in my notebook, instead.
Nothing wrong with that, yeah?!
2021-06-25 13:30:07 +08:00

857 B

Make web forges recognize plain-text documents

Some of the web forges such as GitHub and Gitlab uses linguist framework to recognize the language and blob files. By setting Git attributes with .gitattributes file, you can set a certain option to make it recognize the plain-text files. It is what makes the technology list from the repo.

Oftentimes in these web forges, linguist is configured to not detect certain files like plain-text documents (e.g., Markdown, Asciidoctor, Org mode, ReStructuredText).

Here's an example .gitattributes file to make Org mode and Asciidoctor documents be recognized.

*.org linguist-detectable=true
*.adoc linguist-detectable=true