1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="utf-8 ">
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no ">
7+ < meta name ="theme-color " content ="#000000 ">
8+ < meta http-equiv ="X-UA-Compatible " content ="ie=edge ">
9+ < meta name ="description " content ="A very simple but useful Markdown Previewer and Markdown Editor with CodeMirror ">
10+ < meta name ="keywords " content ="markdown, previewer, markdown previewer, codemirror, markdown editor, editor ">
11+ <!--
12+ manifest.json provides metadata used when your web app is added to the
13+ homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
14+ -->
15+ < link rel ="manifest " href ="%PUBLIC_URL%/manifest.json ">
16+ < link rel ="shortcut icon " href ="%PUBLIC_URL%/favicon.ico ">
17+ <!--
18+ Notice the use of %PUBLIC_URL% in the tags above.
19+ It will be replaced with the URL of the `public` folder during the build.
20+ Only files inside the `public` folder can be referenced from the HTML.
21+
22+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
23+ work correctly both with client-side routing and a non-root public URL.
24+ Learn how to configure a non-root public URL by running `npm run build`.
25+ -->
26+ < title > Markdown Editor by Lam Pham</ title >
27+
28+ < link href ="https://use.fontawesome.com/releases/v5.2.0/css/solid.css " rel ="stylesheet " integrity ="sha384-wnAC7ln+XN0UKdcPvJvtqIH3jOjs9pnKnq9qX68ImXvOGz2JuFoEiCjT8jyZQX2z "
29+ crossorigin ="anonymous ">
30+ < link href ="https://use.fontawesome.com/releases/v5.2.0/css/fontawesome.css " rel ="stylesheet " integrity ="sha384-HbmWTHay9psM8qyzEKPc8odH4DsOuzdejtnr+OFtDmOcIVnhgReQ4GZBH7uwcjf6 "
31+ crossorigin ="anonymous ">
32+ < link rel ="stylesheet " href ="%PUBLIC_URL%/lib/codemirror-5.39.2/lib/codemirror.css ">
33+ </ head >
34+
35+ < body >
36+ < noscript >
37+ You need to enable JavaScript to run this app.
38+ </ noscript >
39+ < div id ="root "> </ div >
40+ <!--
41+ This HTML file is a template.
42+ If you open it directly in the browser, you will see an empty page.
43+
44+ You can add webfonts, meta tags, or analytics to this file.
45+ The build step will place the bundled scripts into the <body> tag.
46+
47+ To begin the development, run `npm start` or `yarn start`.
48+ To create a production bundle, use `npm run build` or `yarn build`.
49+ -->
50+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/marked/0.4.0/marked.min.js "> </ script >
51+ < script src ="%PUBLIC_URL%/lib/codemirror-5.39.2/lib/codemirror.js "> </ script >
52+ < script src ="%PUBLIC_URL%/lib/codemirror-5.39.2/mode/markdown/markdown.js "> </ script >
53+ </ body >
54+
55+ </ html >
0 commit comments