summaryrefslogtreecommitdiff
path: root/vendor/soundasleep/html2text/tests/html/nested-divs.html
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-18 20:14:54 +0300
committerAndrew Dolgov <[email protected]>2023-10-18 20:14:54 +0300
commit9f72616818daf2b3d01a580f0eda634c08513077 (patch)
tree7fd9f598278042f485f196982eceab76fde9f336 /vendor/soundasleep/html2text/tests/html/nested-divs.html
parent89f5af62d8d6c71043eb855a333acaca333ef297 (diff)
use html2text() instead of strip_tags() when making FTS indexes
Diffstat (limited to 'vendor/soundasleep/html2text/tests/html/nested-divs.html')
-rw-r--r--vendor/soundasleep/html2text/tests/html/nested-divs.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/soundasleep/html2text/tests/html/nested-divs.html b/vendor/soundasleep/html2text/tests/html/nested-divs.html
new file mode 100644
index 000000000..b6bd8421c
--- /dev/null
+++ b/vendor/soundasleep/html2text/tests/html/nested-divs.html
@@ -0,0 +1,17 @@
+<html>
+<body>
+<div>
+Just two divs
+</div>
+<div>
+Hanging out
+</div>
+<div><div><div>Nested divs and line breaks</div></div><br></div>
+<div><div>Nested divs and line breaks</div>More text<br></div>
+<div><br></div>
+<div>Just text</div>
+<div>Just text<br></div>
+<div>Just text<br><br></div>
+This is the end!
+</body>
+</html>