add test for load_html

This commit is contained in:
Bennet Bleßmann
2024-10-04 19:09:35 +02:00
parent 126d7bba57
commit 442636c131
2 changed files with 10 additions and 0 deletions

5
tests-pl/issue2588.pl Normal file
View File

@@ -0,0 +1,5 @@
:- use_module(library(sgml)).
test :- load_html("<html><head><title>Hello!</title></head></html>", Es, []), write(Es).
:- initialization(test).