From 14369ab169c67ec7e8cc11e37de817b61a984395 Mon Sep 17 00:00:00 2001 From: "Felix W. Dekker" Date: Sat, 14 Mar 2020 11:45:06 +0100 Subject: [PATCH] Add version number and best practices --- .editorconfig | 11 +++++++++++ README.md | 4 ++++ index.html | 17 +++++++++++------ 3 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 .editorconfig create mode 100644 README.md diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..fd1294f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +charset = utf-8 +trim_trailing_whitespace = true + +end_of_line = lf +insert_final_newline = true + +indent_style = space +indent_size = 4 diff --git a/README.md b/README.md new file mode 100644 index 0000000..c2a30f0 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Converter +An online tool to convert values between number systems. +Quickly convert hexadecimal to binary or base64 to ASCII. +Everything happens in the browser, so nothing is submitted to any server. diff --git a/index.html b/index.html index b2aea04..29b6f98 100644 --- a/index.html +++ b/index.html @@ -5,18 +5,14 @@ - + Converter | FWDekker - - - +
@@ -24,6 +20,13 @@

Converter

+

Convert numbers to and from various bases.

@@ -51,6 +54,8 @@ Licensed under the MIT License. Source code available on git. + +
v1.4.3