# 容器一第一次测试
<!DOCTYPE html>
<title>This is code !</title>

<style>body {width: 500px;}</style>

<script type="application/javascript">
  function $init() {return true;}
</script>

<body>
  <p checked class="title" id='title'>Title</p>
  <!-- here goes the rest of the page -->
</body>
# 容器一第二次测试
# hello world

you can write text [with links](http://example.com) inline or [link references][1].

* one _thing_ has *em*phasis
* two __things__ are **bold**

---

hello world
===========

<this_is inline="xml"></this_is>

> markdown is so cool

    so are code segments

1. one thing (yeah!)
2. two thing `i can write code`, and `more` wipee!

[1]: http://example.com

选择器测试

var _ = require('lodash');
var result = _.each([1, 2, 3]);
console.log(result);

console.log(result);的结果:[ 1, 2, 3 ]

    ```xml
    # 容器二第一次测试
    # hello world

    you can write text [with links](http://example.com) inline or [link references][1].

    * one _thing_ has *em*phasis
    * two __things__ are **bold**

    ---

    hello world
    ===========

    <this_is inline="xml"></this_is>

    > markdown is so cool

    so are code segments

    1. one thing (yeah!)
    2. two thing `i can write code`, and `more` wipee!

    [1]: http://example.com
    ```