Typecho支持表格,想想当初像傻子一样在ide里手撸 table 画表格。真是蛋疼。
但后来发现markdown画表格,和手撸 HTML 半斤八两,区别无外乎一个蛋疼还是一对蛋疼。
然后,我发现了一个拯救我的网站:Tables Generator

可视化,自动生成,真幸福。。。


表格示例
Tables | Are | Cool |
---|---|---|
col 1 is | left-aligned | $1600 |
col 2 is | centered | $12 |
col 3 is | right-aligned | $1 |
PS:至于左右对齐就无视好了。
下面代码,F12控制台运行,或是收藏到收藏夹点击运行都行

解除网页限制
javascript: alert(document.onselectstart = document.onbeforecopy = document.oncontextmenu = document.onmousedown = document.onkeydown = function() {
return true;
});
void(document.body.onmouseup = '');
void(document.body.onselectstart = '');
void(document.body.onmouseup = '');
void(document.body.oncopy = '');
强力版,可能会矫正过度
javascript: alert(document.onselectstart = document.onbeforecopy = document.oncontextmenu = document.onmousedown = document.onkeydown = function() {
return true;
});
void(document.body.onmouseup = '');
void(document.body.onselectstart = '');
void(document.body.onmouseup = '');
void(document.body.oncopy = '');
javascript: document.body.contentEditable = 'true';
document.designMode = 'on';
void 0
开启网页编辑状态
javascript: document.body.contentEditable = 'true';
document.designMode = 'on';
void 0
关闭网页编辑状态
javascript: document.body.contentEditable = 'false';
void 0;