在 Markdown 语法中表示目录和文件结构时,哪种语言适合围栏代码块?

Which is the proper language for fenced code blocks when representing directory & file structure in Markdown syntax?

我想用 Markdown 语法用这样的围栏代码块表示我的目录和文件结构:

project
├── client
└── server

问题是我的 Markdown linter and other Markdown Style Guides 建议 Always specify the language of the code 在使用像这样的 Fenced 代码块时:

```language
a = 1

我想知道我是否应该保留它而不指定一种语言,添加一个随机的语言,或者是否有针对这种情况的特定语言可以突出显示结构。

text 符合 MD040 的非高亮围栏块。我不确定在 Markdown 世界中有多少官方是这样的,但在 Github 的语言学家 languages.yml 中它是 listed 支持高亮(实际上是非高亮)语言。