Etherpad-lite列表编号格式

时间:2014-03-18 11:17:17

标签: etherpad

是否可以在etherpad-lite中设置编号列表格式?

默认格式为:

1. 
1.1.
1.1.1 

我想要格式化:

§1
1)
1.

更新:尝试使用

.list-number1 li:before {
    content: "§" counter(first, decimal);
    counter-increment: first;
}

但是第一级的所有元素都有§1编号(我认为没有纯粹的css解决方案) enter image description here

1 个答案:

答案 0 :(得分:0)

我编写了Etherpad Ordered List实现。用CSS做你想做的事很容易。

将以下内容放在src / static / custom / pad.css

/* The behavior for incrementing and the prefix */
.list-number1 li:before {
  content: "§" counter(first);
  counter-increment: first;
}

.list-number2 li:before {
  content: counter(first) ")";
  counter-increment: second;
}

.list-number3 li:before {
  content: counter(first) ".";
  counter-increment: third 1;
}

确保刷新页面时未加载custom / pad.css的缩小/缓存版本

我觉得奇怪的是,这已经被投票了...... OP你能否确认这是正确的答案?

同样值得注意的是我在Etherpad Core中编写了实现,所以我对此很熟悉......