Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gthomas committed Jun 11, 2018
1 parent 4f6ca62 commit 2e68108
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,10 @@ trim_trailing_whitespace = true
[**/Makefile]
indent_size = 4
indent_style = tab

# Different indent sizes within the same project is discouraged as it makes code
# more difficult to read and maintain across platforms, but an exception can be
# made with HTML as HTML code is very heavily indented, and having an
# `indent_size` of 4 makes it difficult to read.
[docs/**/*.html]
indent_size = 2
23 changes: 14 additions & 9 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="charset" content="utf-8">
<meta name="viewport" content="width=device-width,intial-scale=1.0">
<title>EasyVG</title>
</head>
<head>
<meta charset="utf-8" name="charset" content="utf-8">
<meta name="viewport" content="width=device-width,intial-scale=1.0">
<title>EasyVG</title>
<link rel="stylesheet"
type="text/css"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
</head>

<body>
<h6>OpenVG API</h6>
<pre>Version 1.0</pre>
</body>
<body>
<h6>OpenVG API</h6>
<pre>Version 1.0</pre>
</body>
</html>

0 comments on commit 2e68108

Please sign in to comment.