md语法 1.配置note tag(md的一个语法) Note标签通过在左边界使用特殊颜色划线,实现提醒功能。
1 2 3 4 5 6 7 8 # - simple bootstrap callout old alert style. Default.引导调用旧提示样式。默认 # - modern bootstrap callout new (v2-v3) alert style. 引导调用新(v2-v3)提示样式 # - flat flat callout style with background, like on Mozilla or StackOverflow. # 带背景的扁平callout样式,就像在Mozilla或StackOverflow上一样。 # - disabled disable all CSS styles import of note tag.禁用注释标记的所有CSS样式导入 note: style: flat icons: true
flat:
simple:
modern
disabled:
1.1 Note案例(效果在网页显示) None:
1 2 3 4 {% note %} <b>Header</b> (without define class style ) {% endnote %}
Header (without define class style)
Default :
1 2 3 4 {% note default %} #### Default Header Welcome to [Hexo!](https: {% endnote %}
Primary
1 2 3 4 {% note primary %} #### Primary Header **Welcome** to [Hexo!](https: {% endnote %}
Info :
1 2 3 4 {% note info %} ### Info Header **Welcome** to [Hexo!](https: {% endnote %}
Success :
1 2 3 4 {% note success %} #### Success Header **Welcome** to [Hexo!](https: {% endnote %}
Warning :
1 2 3 4 {% note warning %} #### Warning Header **Welcome** to [Hexo!](https: {% endnote %}
Danger:
1 2 3 4 {% note danger %} #### Danger Header **Welcome** to [Hexo!](https: {% endnote %}
No-icon :
1 2 3 4 5 {% note info no-icon %} Note **without** icon: `note info no-icon` note info, note info, note info {% endnote %}
No icon note Note without icon: note info no-icon
note info, note info, note info
2.文字背景块 1 2 custom_file_path: style: source/_data/styles.styl #取消注释,设置样式
创建文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 // 下载样式 a#download { display: inline-block; padding: 0 10px; color: #000; background: transparent; border: 2px solid #000; border-radius: 2px; transition: all .5s ease; font-weight: bold; &:hover { background: #000; color: #fff; } } // 颜色块-黄 span#inline-yellow { display:inline; padding:.2em .6em .3em; font-size:80%; font-weight:bold; line-height:1; color:#fff; text-align:center; white-space:nowrap; vertical-align:baseline; border-radius:0; background-color: #f0ad4e; } // 颜色块-绿 span#inline-green { display:inline; padding:.2em .6em .3em; font-size:80%; font-weight:bold; line-height:1; color:#fff; text-align:center; white-space:nowrap; vertical-align:baseline; border-radius:0; background-color: #5cb85c; } // 颜色块-蓝 span#inline-blue { display:inline; padding:.2em .6em .3em; font-size:80%; font-weight:bold; line-height:1; color:#fff; text-align:center; white-space:nowrap; vertical-align:baseline; border-radius:0; background-color: #2780e3; } // 颜色块-紫 span#inline-purple { display:inline; padding:.2em .6em .3em; font-size:80%; font-weight:bold; line-height:1; color:#fff; text-align:center; white-space:nowrap; vertical-align:baseline; border-radius:0; background-color: #9954bb; } // 颜色块-红 span#inline-red { display:inline; padding:.2em .6em .3em; font-size:80%; font-weight:bold; line-height:1; color:#fff; text-align:center; white-space:nowrap; vertical-align:baseline; border-radius:0; background-color: #df3e3e; } // 左侧边框红色块级 p#div-border-left-red { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-left-width: 5px; border-radius: 3px; border-left-color: #df3e3e; } // 左侧边框黄色块级 p#div-border-left-yellow { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-left-width: 5px; border-radius: 3px; border-left-color: #f0ad4e; } // 左侧边框绿色块级 p#div-border-left-green { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-left-width: 5px; border-radius: 3px; border-left-color: #5cb85c; } // 左侧边框蓝色块级 p#div-border-left-blue { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-left-width: 5px; border-radius: 3px; border-left-color: #2780e3; } // 左侧边框紫色块级 p#div-border-left-purple { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-left-width: 5px; border-radius: 3px; border-left-color: #9954bb; } // 右侧边框红色块级 p#div-border-right-red { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-right-width: 5px; border-radius: 3px; border-right-color: #df3e3e; } // 右侧边框黄色块级 p#div-border-right-yellow { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-right-width: 5px; border-radius: 3px; border-right-color: #f0ad4e; } // 右侧边框绿色块级 p#div-border-right-green { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-right-width: 5px; border-radius: 3px; border-right-color: #5cb85c; } // 右侧边框蓝色块级 p#div-border-right-blue { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-right-width: 5px; border-radius: 3px; border-right-color: #2780e3; } // 右侧边框紫色块级 p#div-border-right-purple { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-right-width: 5px; border-radius: 3px; border-right-color: #9954bb; } // 上侧边框红色 p#div-border-top-red { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-top-width: 5px; border-radius: 3px; border-top-color: #df3e3e; } // 上侧边框黄色 p#div-border-top-yellow { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-top-width: 5px; border-radius: 3px; border-top-color: #f0ad4e; } // 上侧边框绿色 p#div-border-top-green { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-top-width: 5px; border-radius: 3px; border-top-color: #5cb85c; } // 上侧边框蓝色 p#div-border-top-blue { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-top-width: 5px; border-radius: 3px; border-top-color: #2780e3; } // 上侧边框紫色 p#div-border-top-purple { display: block; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-top-width: 5px; border-radius: 3px; border-top-color: #9954bb; }
使用 这里输入文字
这里输入文字
3.背景自定义效果 在styles.styl里键入自定义形状色块 1 2 3 4 5 6 7 8 9 10 // 自定义形状色块 span#inline-toc { display: inline-block; border-radius: 80 % 100 % 90 % 20 %; background-color: rgb(237 , 237 , 237 ); color: padding: 0. 05em 0. 4em; margin: 2px 5px 2px 0px; line-height: 1.5 ; }
使用 这里输入文字
4.图标边框效果 查看内容
5.文字居中
Szabadság,Szerelem! E kettő kell nekem Szerelmemért föláldozom Az életet Szabadságért föláldozom Szerelmemet.
6.标签 label 默认 主要 成功 信息 警告 危险 这是成功的信息
7 .选项卡
8.按钮 text
url
: 绝对或相对 URL
text
: 按钮文字,如果未指定图标则为必须
icon
: FontAwesome 图标名称(开头没有’fa-‘)。如果未指定文本,则为必需
[class]
: FontAwesome 类:fa-fw | fa-lg | fa-2x | fa-3x | fa-4x | fa-5X
,可选参数。
[title]
: 鼠标悬停时的工具提示,可选参数。
注意:最好添加 <div>
标签,测试时没加 div,下面显示不完全,加上非常美观。