Skip to content
This repository was archived by the owner on May 11, 2020. It is now read-only.

Commit 9818713

Browse files
Merge pull request #8 from LemonUnit/add-twitter-card
Added Twitter Card config
2 parents 89ba50e + 7a57a42 commit 9818713

File tree

3 files changed

+44
-31
lines changed

3 files changed

+44
-31
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
### Added
9+
- Added Twitter card config
10+
711
## [[0.2.0](https://github.com/LemonUnit/csv-editor-online/releases/tag/0.2.0)] - 2019-09-12
812
- Fixed error with empty rows in Data Grid [#1](https://github.com/LemonUnit/csv-editor-online/issues/1)
913
- Enabled PWA support [#2](https://github.com/LemonUnit/csv-editor-online/issues/3)
1014
- Improved CSV delimiter logic [#3](https://github.com/LemonUnit/csv-editor-online/issues/3)
1115

12-
1316
## [[0.1.0](https://github.com/LemonUnit/csv-editor-online/releases/tag/0.1.0)] - 2019-09-05
1417
- Initial application configuration with Create React App, TypeScript and Ant Design
1518
- Added CSV, GRID and JSON modes

public/index.html

Lines changed: 40 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<meta name="theme-color" content="#000000" />
8-
<meta
9-
name="description"
10-
content="CSV Editor Online is a web-based tool to view and edit CSV files. It presents the data in a clear text editor and simple spreadsheet that is easily editable. Install CSV Editor Online as Progressive Web Application and use it even when you don’t have access to Internet."
11-
/>
12-
<meta name="google-site-verification" content="F3ijmE2SJyw6Oqn4cu_cK9Vtidpip_Z5bLJE7Rna7u8" />
13-
<link rel="apple-touch-icon" href="logo192.png" />
14-
<!--
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
8+
<meta name="theme-color" content="#000000" />
9+
<meta name="description"
10+
content="CSV Editor Online is a web-based tool to view and edit CSV files. It presents the data in a clear text editor and simple spreadsheet that is easily editable. Install CSV Editor Online as Progressive Web Application and use it even when you don’t have access to Internet." />
11+
<meta name="google-site-verification" content="F3ijmE2SJyw6Oqn4cu_cK9Vtidpip_Z5bLJE7Rna7u8" />
12+
<link rel="apple-touch-icon" href="logo192.png" />
13+
14+
<meta name="twitter:card" content="summary_large_image">
15+
<meta name="twitter:site" content="@lemonunitcom">
16+
<meta name="twitter:creator" content="@jurijtokarski">
17+
<meta name="twitter:title" content="CSV Editor Online">
18+
<meta name="twitter:description"
19+
content="CSV Editor Online is a web-based tool to view and edit CSV files. It presents the data in a clear text editor and simple spreadsheet that is easily editable. Install CSV Editor Online as Progressive Web Application and use it even when you don’t have access to Internet.">
20+
<meta name="twitter:image"
21+
content="https://lemonunit.github.io/csv-editor-online/logo1024.png">
22+
<!--
1523
manifest.json provides metadata used when your web app is installed on a
1624
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1725
-->
18-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
19-
<!--
26+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
27+
<!--
2028
Notice the use of %PUBLIC_URL% in the tags above.
2129
It will be replaced with the URL of the `public` folder during the build.
2230
Only files inside the `public` folder can be referenced from the HTML.
@@ -25,12 +33,13 @@
2533
work correctly both with client-side routing and a non-root public URL.
2634
Learn how to configure a non-root public URL by running `npm run build`.
2735
-->
28-
<title>CSV Editor Online</title>
29-
</head>
30-
<body>
31-
<noscript>You need to enable JavaScript to run this app.</noscript>
32-
<div id="root"></div>
33-
<!--
36+
<title>CSV Editor Online</title>
37+
</head>
38+
39+
<body>
40+
<noscript>You need to enable JavaScript to run this app.</noscript>
41+
<div id="root"></div>
42+
<!--
3443
This HTML file is a template.
3544
If you open it directly in the browser, you will see an empty page.
3645
@@ -41,13 +50,14 @@
4150
To create a production bundle, use `npm run build` or `yarn build`.
4251
-->
4352

44-
<!-- Global site tag (gtag.js) - Google Analytics -->
45-
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-147740585-1"></script>
46-
<script>
47-
window.dataLayer = window.dataLayer || [];
48-
function gtag(){dataLayer.push(arguments);}
49-
gtag('js', new Date());
50-
gtag('config', 'UA-147740585-1');
51-
</script>
52-
</body>
53-
</html>
53+
<!-- Global site tag (gtag.js) - Google Analytics -->
54+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-147740585-1"></script>
55+
<script>
56+
window.dataLayer = window.dataLayer || [];
57+
function gtag() { dataLayer.push(arguments); }
58+
gtag('js', new Date());
59+
gtag('config', 'UA-147740585-1');
60+
</script>
61+
</body>
62+
63+
</html>

public/logo1024.png

1.69 KB
Loading

0 commit comments

Comments
 (0)