I am writing a README.md
for a program that I am developing at work. I would like it to be shown at the program's GitLab repository page. The program automatically prints files that are in given folder and then moves them to another folder. I developed a simple gitignore-like function that makes some of the files (specified in a file called .printignore
) being ignored. I wanted to write some examples on how to structure the .printignore
file to the README.md
file.
I know I can write, for example, js
or python
right after the opening ```
to use the syntax for a specific language. However, I am unable to find out how the gitignore-like language is called. I could use some other language that formats at least comments, but if it is possible I would rather not.
Does the marking language of .gitignore
and .dockerignore
have some specific name? Is it possible to tell the markdown language to use its syntax?