Skip to content

Commit b6142e7

Browse files
committed
Merge branch 'master' of github.com:gskinner/regexr
2 parents 8f860c4 + 0fcbcff commit b6142e7

12 files changed

+67
-1
lines changed

.gitattributes

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,47 @@
1+
# Force all line endings to be \n
12
* text eol=lf
3+
4+
############################################################
5+
# git can corrupt binary files if they're not set to binary.
6+
############################################################
7+
8+
# Apple office documents are actually folders, so treat them as binary.
9+
*.numbers binary
10+
*.pages binary
11+
*.keynote binary
12+
13+
# Image files
14+
*.png binary
15+
*.jpg binary
16+
*.jpeg binary
17+
*.gif binary
18+
*.webp binary
219
*.ico binary
20+
21+
# Movie and audio files
22+
*.mov binary
23+
*.mp4 binary
24+
*.mp3 binary
25+
*.flv binary
26+
*.ogg binary
27+
28+
# Compression formats
29+
*.gz binary
30+
*.bz2 binary
31+
*.7z binary
32+
*.zip binary
33+
34+
# Web fonts
35+
*.ttf binary
36+
*.eot binary
37+
*.woff binary
38+
*.otf binary
39+
40+
# Other
41+
*.fla binary
42+
*.swf binary
43+
*.pdf binary
44+
45+
############################################################
46+
# End binary settings
47+
############################################################
4.49 KB
Loading
4.47 KB
Loading
5.48 KB
Loading
4.94 KB
Loading
1.72 KB
Loading
2.44 KB
Loading
2.43 KB
Loading

assets/favicon.png

9.31 KB
Loading

assets/og.png

24.8 KB
Loading

favicon.ico

32.2 KB
Binary file not shown.

index.html

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
if(self !== top) { top.location = self.location; }
99
</script>
1010

11-
<link rel="shortcut icon" href="regexrFavicon.ico"/>
11+
<link rel="canonical" href="http://regexr.com/">
12+
13+
<link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
14+
<link rel="shortcut icon" href="/assets/favicon.png" type="image/png" />
1215

1316
<meta name=viewport content="width=device-width, initial-scale=1, user-scalable=yes">
1417

@@ -25,6 +28,24 @@
2528
<meta name="msapplication-wide310x150logo" content="assets/windows8/widetile.png"/>
2629
<meta name="msapplication-square310x310logo" content="assets/windows8/largetile.png"/>
2730

31+
<!-- Apple Touch icon (funnily enough also used by Android) -->
32+
<link rel="apple-touch-icon" sizes="152x152" href="assets/apple/apple-touch-icon-152x152.png">
33+
<link rel="apple-touch-icon" sizes="144x144" href="assets/apple/apple-touch-icon-144x144.png">
34+
<link rel="apple-touch-icon" sizes="120x120" href="assets/apple/apple-touch-icon-120x120.png">
35+
<link rel="apple-touch-icon" sizes="114x114" href="assets/apple/apple-touch-icon-114x114.png">
36+
<link rel="apple-touch-icon" sizes="76x76" href="assets/apple/apple-touch-icon-76x76.png">
37+
<link rel="apple-touch-icon" sizes="72x72" href="assets/apple/apple-touch-icon-72x72.png">
38+
<link rel="apple-touch-icon" href="assets/apple/apple-touch-icon.png">
39+
40+
<!-- OG Tags for Facebook sharing -->
41+
<meta property="og:image" content="http://regexr.com/assets/og.png"/>
42+
<meta property="og:image:width" content="1200"/>
43+
<meta property="og:image:height" content="630"/>
44+
<meta property="og:title" content="RegExr: Learn, Build, & Test RegEx"/>
45+
<meta property="og:description" content="RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp)."/>
46+
<meta property="og:url" content="http://regexr.com/"/>
47+
<meta property="og:site_name" content="RegExr.com"/>
48+
2849
<script src="js/scripts.min.js?no=<%=noCache %>"></script>
2950
<script src="js/regExWorker.template.js?no=<%=noCache %>"></script>
3051

0 commit comments

Comments
 (0)