测试文章
· 默认分类
这篇文章包含markdown语法基本的内容, 目的是放在自己的博客园上, 通过开发者控制台快速选中,
从而自定义自己博客园markdown样式.当然本文也可以当markdown语法学习之用.
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="col-mb-12 col-8" id="main" role="main">
<h3 class="archive-title"><?php $this->archiveTitle([
'category' => _t('分类 %s 下的文章'),
'search' => _t('包含关键字 %s 的文章'),
'tag' => _t('标签 %s 下的文章'),
'author' => _t('%s 发布的文章')
], '', ''); ?></h3>
<?php if ($this->have()): ?>
<?php while ($this->next()): ?>
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<h2 class="post-title" itemprop="name headline"><a itemprop="url"
href="<?php $this->permalink() ?>"><?php $this->title() ?></a>
</h2>
<ul class="post-meta">
<li itemprop="author" itemscope itemtype="http://schema.org/Person"><?php _e('作者: '); ?><a
itemprop="name" href="<?php $this->author->permalink(); ?>"
rel="author"><?php $this->author(); ?></a></li>
<li><?php _e('时间: '); ?>
<time datetime="<?php $this->date('c'); ?>"
itemprop="datePublished"><?php $this->date(); ?></time>
</li>
<li><?php _e('分类: '); ?><?php $this->category(','); ?></li>
<li itemprop="interactionCount"><a
href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('评论', '1 条评论', '%d 条评论'); ?></a>
</li>
</ul>
<div class="post-content" itemprop="articleBody">
<?php $this->content('- 阅读剩余部分 -'); ?>
</div>
</article>
<?php endwhile; ?>
<?php else: ?>
<article class="post">
<h2 class="post-title"><?php _e('没有找到内容'); ?></h2>
</article>
<?php endif; ?>
<?php $this->pageNav('« 前一页', '后一页 »'); ?>
</div><!-- end #main -->
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>
在markdown里强制换行是在末尾添加2个空格+1个回车.
在markdown里可以使用 \ 对特殊符号进行转义.
1. 标题
语法
# This is an <h1> tag
## This is an <h2> tag
### This is an <h3> tag
#### This is an <h4> tag
实例
This is an h1 tag
This is an h2 tag
This is an h3 tag
This is an h4 tag
2. 强调和斜体
语法
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
(个人不喜欢2个下划线中间包含的内容被斜体, 会和网址冲突, 我会在自定义博客园样式中去除这个样式.)
实例
This text will be italic
This will also be italic
This text will be bold
This will also be bold
3. 有序列表和无序列表
语法
* Item 1
* Item 2
* Item 3
1. Item 1
2. Item 2
3. Item 3
实例
- Item 1
- Item 2
- Item 3
- Item 1
- Item 2
- Item 3
4. 图片
语法
![img-name](img-url)
实例
5. 超链接
语法
[link-name](link-url)
实例
6. 引用
语法
> 引用本意是引用别人的话之类
> 但我个人喜欢把引用当成"注意"使用
实例
If you please draw me a sheep!
不想当将军的士兵, 不是好士兵.
7. 单行代码
语法
`This is an inline code.`
实例
同样的单行代码, 我经常用来显示特殊名词
8. 多行代码
语法
```javascript
for (var i=0; i<100; i++) {
console.log("hello world" + i);
}
```
实例
for (var i=0; i<100; i++) {
console.log("hello world" + i);
}
也可以通过缩进来显示代码, 下面是示例:
console.loe("Hello_World");
参考链接
https://guides.github.com/features/mastering-markdown/
https://help.github.com/articles/basic-writing-and-formatting-syntax/