akuma / mdtest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Markdown Test

目录

it('should pass object with correct values to save', function() {
  var save = sinon.stub(Database, 'save');
  var info = { name: 'test' };
  var expectedUser = {
    name: info.name,
    nameLowercase: info.name.toLowerCase()
  };

  setupNewUser(info, function() { });

  save.restore();
  sinon.assert.calledWith(save, expectedUser);
});

测试中文 ES2016

测试一下,哈哈~

Emphasis

This text will be italic This will also be italic

This text will be bold This will also be bold

This text will be crossed

You can combine them

Lists

Unordered

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Ordered

  1. Item 1
  2. Item 2
  3. Item 3
  • Item 3a
  • Item 3b

Images

Markdown Logo: logo

Links

http://github.com - automatic! GitHub

Blockquotes

As Kanye West said:

We're living the future so the present is our past.

Inline code

This is an inline code: var example = true

Block code

console.log('Hello world!')
console.log('Hello world!')

Tables

First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column

Emoji

✨ 🐫 💥

HTML

This is a html code.

本周工作内容

  • 1
  • 2

日常工作及其他

  • 1
  • 2

下周工作计划

  • 1
  • 2

问题及建议

  • 1
  • 2

About