From 929ef3507b0f921cb1286c741ff4853626e2e80c Mon Sep 17 00:00:00 2001 From: matthias-schuetz Date: Mon, 21 Feb 2022 20:18:26 +0100 Subject: [PATCH 1/2] Clean up --- index.html | 2 +- js/codemirror/theme/bright.css | 2 +- js/codemirror/theme/dark.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 85df5f7..9820c59 100644 --- a/index.html +++ b/index.html @@ -80,7 +80,7 @@

HTMLiveCode is a real-time HTML/CSS/JavaScript code editor which is made for rapid prototyping.

Click on the gutter to fold a tag range in and out.

The editor makes use of HTML5's localStorage and has been optimized for modern browsers. Internet Explorer is supported from version 9 on.

-

The project was developed by Matthias Schuetz and is available on GitHub.

+

The project was developed by Matthias Schuetz and is available on GitHub.

diff --git a/js/codemirror/theme/bright.css b/js/codemirror/theme/bright.css index a1bec24..7ff8233 100644 --- a/js/codemirror/theme/bright.css +++ b/js/codemirror/theme/bright.css @@ -1,7 +1,7 @@ /* Bright theme for CodeMirror Copyright (C) 2012 by Matthias Schuetz - http://matthiasschuetz.com + https://github.com/matthias-schuetz */ .cm-s-bright { background:#ffffff; color:#020202; } diff --git a/js/codemirror/theme/dark.css b/js/codemirror/theme/dark.css index 93cdb1a..3e3e4b9 100644 --- a/js/codemirror/theme/dark.css +++ b/js/codemirror/theme/dark.css @@ -1,7 +1,7 @@ /* Dark theme for CodeMirror Copyright (C) 2012 by Matthias Schuetz - http://matthiasschuetz.com + https://github.com/matthias-schuetz */ .cm-s-dark { background:#252525; color:#efefef; } From 658f713682092836092d740c4cd63dcc41fccb40 Mon Sep 17 00:00:00 2001 From: matthias-schuetz Date: Mon, 21 Feb 2022 20:19:25 +0100 Subject: [PATCH 2/2] Clean up --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 95d30b5..92d1969 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,6 @@ HTMLiveCode HTMLiveCode is a simple editor which is built on top of HTML, CSS and JavaScript. It was made for the editing of these languages and can be used for rapid prototyping. The editor can be customized in its appearance so there are themes and some other editor options. HTMLiveCode is based on CodeMirror and makes use of JSLint and HTML5's localStorage. - - -## Demo -Click here for a live demonstration. - ## Usage After loading all necessary files of the folders "js" and "css" in your main file, HTMLiveCode is available in the global namespace and must be instantiated as an object. You don't need any HTML markup as the editor will be attached to the <body> element. You don't need to specify any options since HTMLiveCode can be started with default settings. The editor should be instantiated when the DOM is ready. For example, use the "DOMContentLoaded" event to make sure that everything has been loaded.