在降价文件中显示带有代码的下拉区域/可扩展区域
Show dropdown area / expandable area with code in markdown file
我正在尝试在 readme.md 文件中添加一个下拉菜单并在该可扩展区域中显示代码。
对于 md 文件,我看到有人使用对我有用的 ```。
以下链接对于使用 md 文件和许多其他内容显示表格数据很有用:-
https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
https://github.com/tchapi/markdown-cheatsheet/blob/master/README.md
为了显示下拉菜单,我发现将详细信息标签与摘要一起使用会奏效:-
我正在尝试更新 md 文件并在
中显示一些代码
<details>
<summary><h1 style="display:inline-block"> Advanced Topics </h1></summary>
```
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<nav>
<a routerLink="/signin" routerLinkActive="active">SignIn</a>
<a routerLink="/signup" routerLinkActive="active">SignUp</a>
</nav>
<router-outlet></router-outlet>`,
styleUrls: ['./app.component.css']
})
export class AppComponent {
}
```
</details>
但是我到现在都没有成功。
如何显示 formatted/highlighted 代码,就像我使用 ``` 但在详细信息标签内一样?
如有任何帮助,我们将不胜感激。
解决方案
这个问题的解决方案是 'run code snippet'
<script src="https://gist.github.com/nicolasalarconrapela/91d36921ab168401f88050929aeab1be.js">
</script>
我正在尝试在 readme.md 文件中添加一个下拉菜单并在该可扩展区域中显示代码。
对于 md 文件,我看到有人使用对我有用的 ```。
以下链接对于使用 md 文件和许多其他内容显示表格数据很有用:-
https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
https://github.com/tchapi/markdown-cheatsheet/blob/master/README.md
为了显示下拉菜单,我发现将详细信息标签与摘要一起使用会奏效:-
我正在尝试更新 md 文件并在
中显示一些代码<details>
<summary><h1 style="display:inline-block"> Advanced Topics </h1></summary>
```
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<nav>
<a routerLink="/signin" routerLinkActive="active">SignIn</a>
<a routerLink="/signup" routerLinkActive="active">SignUp</a>
</nav>
<router-outlet></router-outlet>`,
styleUrls: ['./app.component.css']
})
export class AppComponent {
}
```
</details>
但是我到现在都没有成功。
如何显示 formatted/highlighted 代码,就像我使用 ``` 但在详细信息标签内一样?
如有任何帮助,我们将不胜感激。
解决方案
这个问题的解决方案是 'run code snippet'
<script src="https://gist.github.com/nicolasalarconrapela/91d36921ab168401f88050929aeab1be.js">
</script>
<script src="https://gist.github.com/nicolasalarconrapela/91d36921ab168401f88050929aeab1be.js">
</script>