wiki/notebook/web.forges.recognize-plain-text-documents.org

22 lines
924 B
Org Mode
Raw Normal View History

:PROPERTIES:
:ID: ae9b5d09-3a46-4173-b9b2-0232f583b16d
:END:
#+title: Make web forges recognize plain-text documents
#+date: "2021-06-24 18:17:37 +08:00"
#+date_modified: "2021-07-20 23:32:51 +08:00"
#+language: en
Some of the web forges such as GitHub and Gitlab uses [[https://github.com/github/linguist][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.
#+begin_src gitattributes
*.org linguist-detectable=true
*.adoc linguist-detectable=true
#+end_src