跳到主要内容

· 阅读需 2 分钟
Duke Lu

基础语法

基础语法是 John Gruber 的原始设计文档中概述的元素。 所有 Markdown 应用程序都支持这些元素。

· 阅读需 1 分钟
Duke Lu

Markdown 语法中,默认的表格样式为:每列等分,这样不仅影响美观,还会因为某列过长而把表格挤变形 解决办法很简单:在 md 文件中添加 css 样式来即可

<style>
table th:nth-of-type(1){
width: 20%;
}
table th:nth-of-type(2){
width: 20%
;
}
table th:nth-of-type(3){
width: 60%;
}
</style>

*Java Reference Documentation*
| RELEASE | CODENAME | DOCUMENTATION |
| :-: | :-: | :-: |
| 10 | - | [JDK Documentation](https://docs.oracle.com/javase/10/) &emsp;&#124;&emsp; [Java SE API](https://docs.oracle.com/javase/10/docs/api/) &emsp;&#124;&emsp; Java EE API |