IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> Docsify Markdown表格列宽自定义 -> 正文阅读

[JavaScript知识库]Docsify Markdown表格列宽自定义

设置表格容器样式

table {
    display: table !important;
    width: 100%;
}

自定义marked renderer

window.$docsify = {
  name: "",
  repo: "",
  // 封面
  coverpage: true,
  // 加载侧边栏(_sidebar.md)
  loadSidebar: true,
  markdown: {
    renderer: {
      table: function (header, body) {
        // 从表体第一行读取列宽配置
        let firstRow = body.substring(0, body.indexOf("</tr>") + 5);
        // 将列宽配置dom字符串转换为可处理的字符串 :width,:width,...
        let colWidthConfig = firstRow
          .replace("<tr>", "")
          .replace("</tr>", "")
          .replaceAll("\n", "")
          .replace(/<td[^>]*>/g, "")
          .replaceAll("</td>", ",");
        colWidthConfig = colWidthConfig.substring(
          0,
          colWidthConfig.length - 1
        );
        let colgroupDomStr = "";
        // 当前读取到的第一行是列宽配置行, 拼接列宽配置dom字符串
        if (colWidthConfig.startsWith(":")) {
          // 去除多余的 :
          colWidthConfig = colWidthConfig.replaceAll(":", "");
          colgroupDomStr = "<colgroup>";
          for (let item of colWidthConfig.split(",")) {
            colgroupDomStr += `<col width="${item}"></col>`;
          }
          colgroupDomStr += "</colgroup>";

          body = body.substring(body.indexOf("</tr>") + 5);
        }

        // 拼接table dom字符串并返回
        return (
          "<table>" +
          colgroupDomStr +
          "<thead>" +
          header +
          "</thead><tbody>" +
          body +
          "</tbody>" +
          "</table>"
        );
      },
    },
  },
};

原理解析

如上代码是利用marked renderer所提供的数据及自定义表格宽度定义规则来实现的
首先看renderer函数的入参:

<!-- header -->
<tr>
  <th align="center">方法名</th>
  <th>说明</th>
  <th align="center">参数</th>
  <th>返回值</th>
</tr>
<!-- body -->
<tr>
  <td align="center">getCurrentRow</td>
  <td>获取当前点击选中的行</td>
  <td align="center"></td>
  <td>record[Json]</td>
</tr>
<tr>
  <td align="center">getSelectionRows</td>
  <td>获取当前已勾选的所有行</td>
  <td align="center"></td>
  <td>records[Array]</td>
</tr>

其次看markdown语法定义表格的源码:

|      方法名      | 说明                   | 参数 | 返回值         |
| :--------------: | ---------------------- | :--: | -------------- |
|  getCurrentRow   | 获取当前点击选中的行   |      | record[Json]   |
| getSelectionRows | 获取当前已勾选的所有行 |      | records[Array] |

再看表格列宽度配置的方法:
参看 colgroup中col定义表格单元格宽度

再看我们动手脚的地方:
由于表格头部不能动手脚(会导致表格渲染不出来), 那么就只能从表格主体部分动手脚,我这里采取的做法是在表体的首行配置表格列宽

|      方法名      | 说明                   | 参数 | 返回值         |
| :--------------: | ---------------------- | :--: | -------------- |
|       :150       | :auto                  | :100 | :100           |
|  getCurrentRow   | 获取当前点击选中的行   |      | record[Json]   |
| getSelectionRows | 获取当前已勾选的所有行 |      | records[Array] |

如上md源码在typora中表现如下:
在这里插入图片描述
在docsify中表现如下:
在这里插入图片描述
再看docsify marked最终渲染的dom结构:

<table>
  <colgroup>
    <col width="150">
    <col width="auto">
    <col width="100">
    <col width="100">
  </colgroup>
  <thead>
    <tr>
      <th align="center">方法名</th>
      <th>说明</th>
      <th align="center">参数</th>
      <th>返回值</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td align="center">getCurrentRow</td>
      <td>获取当前点击选中的行</td>
      <td align="center"></td>
      <td>record[Json]</td>
    </tr>
    <tr>
      <td align="center">getSelectionRows</td>
      <td>获取当前已勾选的所有行</td>
      <td align="center"></td>
      <td>records[Array]</td>
    </tr>
  </tbody>
</table>

至此,就实现了docsify中自定义表格宽度的功能

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-04 15:27:11  更:2022-03-04 15:28:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:53:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码