mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-08 11:12:01 +01:00
![John McLear](/assets/img/avatar_default.png)
1. Introduce contentcollector.js backend tests 1. Fix issue with OL LI items not being properly numbered after import 1. Fix issue with nested OL LI items being improperly numbered on export 1. Fix issue with new lines not being introduced after lists in on import #3961 1. Sanitize HTML on the way in (import) 1. Fix ExportHTML CSS because it needs to support OL > LI > OL not OL > OL [The latter being the correct format] 1. Fix backend tests.
40 lines
567 B
HTML
40 lines
567 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title><%- padId %></title>
|
|
<meta name="generator" content="Etherpad">
|
|
<meta name="author" content="Etherpad">
|
|
<meta name="changedby" content="Etherpad">
|
|
<meta charset="utf-8">
|
|
<style>
|
|
ol {
|
|
counter-reset: item;
|
|
}
|
|
|
|
ol > li {
|
|
counter-increment: item;
|
|
}
|
|
|
|
ol ol > li {
|
|
display: block;
|
|
}
|
|
|
|
ol > li {
|
|
display: block;
|
|
}
|
|
|
|
ol > li:before {
|
|
content: counters(item, ".") ". ";
|
|
}
|
|
|
|
ol ol > li:before {
|
|
content: counters(item, ".") ". ";
|
|
margin-left: -20px;
|
|
}
|
|
<%- extraCSS %>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<%- body %>
|
|
</body>
|
|
</html>
|