Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 github。我的 README.md 包含代码示例。使用浏览器在 github 中查看我的 README 时,如何使此代码以彩色显示?我愿意使用要点,但不确定如何将它们集成到自述文件中。
您可以像这样添加语言提示:
```javascript // Your code here ```
像这样用```开始和结束块
``` // your code block here ```
或者,您可以像这样在第一个 ``` 之后添加语言标识符,如 'ruby'
```<language identifier> // your code block here ```