123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module.exports = `<title>富文本示例</title>
- <div>
- <section style="text-align: center; margin: 0px auto;">
- <section style="border-radius: 4px; border: 1px solid #757576; display: inline-block; padding: 5px 20px;">
- <span style="font-size: 18px; color: #595959;">表格</span>
- </section>
- </section>
- <section style="margin-top: 1.5em;">
- <table width="100%" border="1" cellspacing="0" cellpadding="5" style="border-collapse: collapse;">
- <thead>
- <tr>
- <th>标题 1</th>
- <th>标题 2</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td align="center"></td>
- <td align="center">内容 2</td>
- </tr>
- <tr>
- <td align="center">内容 3</td>
- <td align="center">内容 4</td>
- </tr>
- <tr>
- <td align="center">内容 5</td>
- <td align="center">内容 6</td>
- </tr>
- </tbody>
- </table>
- </section>
- <section style="text-align: center; margin: 0px auto; margin-top: 2em">
- <section style="border-radius: 4px; border: 1px solid #757576; display: inline-block; padding: 5px 20px;">
- <span style="font-size: 18px; color: #595959;">文本</span>
- </section>
- </section>
- <section style="margin-top: 1.5em;">
- “富文本编辑器”不同于文本编辑器,程序员可到网上下载免费的富文本编辑器内嵌于自己的网站或程序里(当然付费的功能会更强大些),方便用户编辑文章或信息。这是一条<a href="https://github.com/jin-yufeng/mp-html">链接</a>
- </section>
- <section style="text-align: center; margin: 0px auto; margin-top: 2em">
- <section style="border-radius: 4px; border: 1px solid #757576; display: inline-block; padding: 5px 20px;">
- <span style="font-size: 18px; color: #595959;">图片</span>
- </section>
- </section>
- <section style="margin-top: 1.5em; text-align: center;">
- <img src="/demo-thumb.jpg?sign=91b3e495d16f96a0df3d263c9ff95821&t=1609059235" original-src="/demo.jpg?sign=af7082bed28711177bd952dbab67373e&t=1609059255">
- </section>
- </div>`
|