parsování xml a výpis xml

This commit is contained in:
2021-01-26 19:03:59 +01:00
parent 0e5089afd6
commit 0ade9c4503
8 changed files with 122 additions and 41 deletions

8
js/comments.js Normal file
View File

@@ -0,0 +1,8 @@
class Comment {
constructor(start, end, text, fulltext) {
this.start = start;
this.end = end;
this.text = text;
this.fulltext = fulltext;
}
}