I have markup that is passed via a data base. I need to display this markup in a valid way, but truncated. I’ve done this in the past by using sub string.
JavaScript
x
3
1
let string = 'this is a string of text';
2
string.substr(0, 165);`
3
But I cannot do this with markup, as it wil result in invalid markup being output as the end tags will be removed.
Example:
JavaScript
1
13
13
1
<h2>Titile</h2>
2
<p>Some long paragraph</p>
3
<p>Another long paragraph</p>
4
<p>Another long paragraph</p>
5
<p>Another long paragraph</p>
6
<ul>
7
<li>list item</li>
8
<li>list item</li>
9
<li>list item</li>
10
<li>list item</li>
11
</ul>
12
more markup
13
Expected formatted output:
JavaScript
1
4
1
Title
2
Some long paragraph
3
Another long
4
Can anyone think of a way of truncating the content using js or css without it resulting in broken html? Thanks.
Advertisement
Answer
I would suggest using the line-clamp rule in CSS. If you require IE support, then a JS solution would be required.
JavaScript
1
7
1
.line-clamp {
2
display: -webkit-box;
3
-webkit-line-clamp: 3;
4
-webkit-box-orient: vertical;
5
overflow: hidden;
6
}
7
Output:
JavaScript
1
5
1
Titile
2
Some long paragraph
3
4
Another long paragraph
5