Markdown

#markdown
##markdown
###markdown
####markdown
alt-H1
=========
alt-H2
--------------
*italic*
**bold**
***emphasis & bold*** __ emphasis & bold__
~~ Strikethrough~~
1. 哈哈
     * 呵呵
2. 嘎嘎
    + 嗯嗯
    - 谔谔
    * 嗷嗷
3. 呱呱
- [百度]( http://www.baidu.com)
- [百度][1]
- [百度][baidu]
- [百度]

![alt][1]
![alt][logo]
![alt]

`code & back-ticks`
```
package abstractFactory;
/**
 * 抽象工厂设计模式(23 of GoF)
 * @author Administrator
 * zyl的总结:物以类聚...
 */
public class Main {

        public static void main(String[] args) {
              // TODO Auto-generated method stub
             ButtonFactory macFactory = new MacFactory();
             Button winBtn = macFactory.createButton();
              winBtn.say();
       }

}
interface ButtonFactory
{
        public abstract Button createButton();
        //public abstract ScrollBar createScrollBar(); 可以创建scrollBar等
}

class MacFactory implements ButtonFactory
{
        @Override
        public Button createButton() {
              // TODO Auto-generated method stub
              return new MacButton();
       }
       
}

class WinFactory implements ButtonFactory
{
        @Override
        public Button createButton() {
              // TODO Auto-generated method stub
              return new WinButton();
       }
}

abstract class Button
{
        public abstract void say();
}

class MacButton extends Button
{

        @Override
        public void say() {
              // TODO Auto-generated method stub
             System. out.println("say i'm MacButton" );
       }
       
}

class WinButton extends Button
{

        @Override
        public void say() {
              // TODO Auto-generated method stub
             System. out.println("say i'm WinButton" );
       }
       
}
```
|账号  | 密码 |
| :----:| ---:|
| zt | 123123|
|zyl | 123456|
|lxl |222222|
|yh | 321321|
>BlockQuotes  BlockQuotes  BlockQuotes
BlockQuotes  BlockQuotes  BlockQuotes
BlockQuotes  BlockQuotes  BlockQuotes
BlockQuotes  BlockQuotes  BlockQuotes
BolokQuotes  BlockQuotes  BlockQuotes 

Quote Break.

>BlockQuotes  BlockQuotes  BlockQuotes
>BolokQuotes __ BlockQuotes__  BlockQuotes 

<dl>
    <dt>You can use inner HTML</dt>
     <dd>But not work very well</dd>
       <dt>I think Markdown will not work in inner HTML</dt>
    <dd>But it doesn't **work** and should not take ___effect___</dd>
</dl>
this is

---

three or more

***

and two enter space

___

will be a horizontal


markdown
markdown
markdown
markdown

alt-H1

alt-H2

italic
bold
emphasis & bold emphasis & bold

Strikethrough

  1. 哈哈
    • 呵呵
  2. 嘎嘎
    • 嗯嗯
    • 谔谔
    • 嗷嗷
  3. 呱呱

alt
alt
alt
alt

code & back-ticks

 
 
package abstractFactory;
/**
* 抽象工厂设计模式(23 of GoF)
* @author Administrator
* zyl的总结:物以类聚...
*/
public class Main {
 
public static void main(String[] args) {
// TODO Auto-generated method stub
ButtonFactory macFactory = new MacFactory();
Button winBtn = macFactory.createButton();
winBtn.say();
}
 
}
interface ButtonFactory
{
public abstract Button createButton();
//public abstract ScrollBar createScrollBar(); 可以创建scrollBar等
}
 
class MacFactory implements ButtonFactory
{
@Override
public Button createButton() {
// TODO Auto-generated method stub
return new MacButton();
}
 
}
 
class WinFactory implements ButtonFactory
{
@Override
public Button createButton() {
// TODO Auto-generated method stub
return new WinButton();
}
}
 
abstract class Button
{
public abstract void say();
}
 
class MacButton extends Button
{
 
@Override
public void say() {
// TODO Auto-generated method stub
System. out.println("say i'm MacButton" );
}
 
}
 
class WinButton extends Button
{
 
@Override
public void say() {
// TODO Auto-generated method stub
System. out.println("say i'm WinButton" );
}
 
}
账号 密码
zt 123123
zyl 123456
lxl 222222
yh 321321

BlockQuotes BlockQuotes BlockQuotes
BlockQuotes BlockQuotes BlockQuotes
BlockQuotes BlockQuotes BlockQuotes
BlockQuotes BlockQuotes BlockQuotes
BolokQuotes BlockQuotes BlockQuotes

Quote Break.

BlockQuotes BlockQuotes BlockQuotes
BolokQuotes BlockQuotes BlockQuotes


You can use inner HTML
But not work very well
I think Markdown will not work in inner HTML
But it doesn't  work and should not take  effect

this is


three or more


and two enter space


will be a horizontal

alt

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值