File: index.html

package info (click to toggle)
node-autolinker 1.8.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,336 kB
  • sloc: makefile: 65; sh: 2
file content (63 lines) | stat: -rw-r--r-- 2,761 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Autolinker.js Tests</title>

	<!-- Jasmine -->
	<link rel="shortcut icon" type="image/png" href="../node_modules/jasmine-core/jasmine_favicon.png">
	<link rel="stylesheet" type="text/css" href="../node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
	<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
	<script src="../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
	<script src="../node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>

	<!-- Code under test -->
	<script src="../src/Autolinker.js"></script>
	<script src="../src/Util.js"></script>
	<script src="../src/HtmlTag.js"></script>
	<script src="../src/RegexLib.js"></script>
	<script src="../src/AnchorTagBuilder.js"></script>
	<script src="../src/htmlParser/HtmlParser.js"></script>
	<script src="../src/htmlParser/HtmlNode.js"></script>
	<script src="../src/htmlParser/CommentNode.js"></script>
	<script src="../src/htmlParser/ElementNode.js"></script>
	<script src="../src/htmlParser/EntityNode.js"></script>
	<script src="../src/htmlParser/TextNode.js"></script>
	<script src="../src/match/Match.js"></script>
	<script src="../src/match/Email.js"></script>
	<script src="../src/match/Hashtag.js"></script>
	<script src="../src/match/Phone.js"></script>
	<script src="../src/match/Mention.js"></script>
	<script src="../src/match/Url.js"></script>
	<script src="../src/matcher/Matcher.js"></script>
	<script src="../src/matcher/TldRegex.js"></script>
	<script src="../src/matcher/Email.js"></script>
	<script src="../src/matcher/Hashtag.js"></script>
	<script src="../src/matcher/Phone.js"></script>
	<script src="../src/matcher/Mention.js"></script>
	<script src="../src/matcher/Url.js"></script>
	<script src="../src/matcher/UrlMatchValidator.js"></script>
	<script src="../src/truncate/TruncateEnd.js"></script>
	<script src="../src/truncate/TruncateMiddle.js"></script>
	<script src="../src/truncate/TruncateSmart.js"></script>

	<!-- Tests and Testing Utilities -->
	<script src="../node_modules/lodash/lodash.js"></script>
	<script src="AutolinkerSpec.js"></script>
	<script src="HtmlTagSpec.js"></script>
	<script src="UtilSpec.js"></script>
	<script src="htmlParser/HtmlParserSpec.js"></script>
	<script src="match/MatchChecker.js"></script>
	<script src="match/MatchSpec.js"></script>
	<script src="matcher/EmailSpec.js"></script>
	<script src="matcher/HashtagSpec.js"></script>
	<script src="matcher/PhoneSpec.js"></script>
	<script src="matcher/MentionSpec.js"></script>
	<script src="matcher/UrlSpec.js"></script>
	<script src="truncate/TruncateMiddleSpec.js"></script>
	<script src="truncate/TruncateSmartSpec.js"></script>
</head>

<body>
</body>
</html>