From 21098de5d6caf32c54e8401446b7dc62d497cff6 Mon Sep 17 00:00:00 2001 From: "Felix W. Dekker" Date: Sat, 14 Mar 2020 11:53:03 +0100 Subject: [PATCH] Add version number and best practices --- .editorconfig | 11 +++++++++++ README.md | 2 ++ index.html | 21 +++++++++++++-------- 3 files changed, 26 insertions(+), 8 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..3b76aad --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Simplify fractions +Simplifies a fraction of integers by dividing both operands by their greatest common divisor. diff --git a/index.html b/index.html index e4458e9..ca1bc0a 100644 --- a/index.html +++ b/index.html @@ -4,19 +4,15 @@ - - + + Simplify fractions | FWDekker - - - +
@@ -24,6 +20,13 @@

Simplify fractions

+

Simplify a fraction to eliminate common factors.

@@ -41,7 +44,7 @@ - + @@ -60,6 +63,8 @@ Licensed under the MIT License. Source code available on git. + +
v1.0.11