first commit
This commit is contained in:
38
node_modules/eol/index.html
generated
vendored
Normal file
38
node_modules/eol/index.html
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US" class="scheme--white">
|
||||
<meta charset="utf-8">
|
||||
<title>EOL converter</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Newline character converter">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
|
||||
<header class="m-b-3">
|
||||
<h1 class="m-b-1">eol converter</h1>
|
||||
<a class="button scheme--light" href="https://github.com/ryanve/eol">Github</a>
|
||||
<a class="button scheme--light" href="https://www.npmjs.com/package/eol">npm</a>
|
||||
</header>
|
||||
|
||||
<form class="js-converter__form">
|
||||
<fieldset class="m-b-2">
|
||||
<label class="block m-b-2">
|
||||
<b>Input</b>
|
||||
<textarea class="area border-radius scheme--white js-converter__input"></textarea>
|
||||
</label>
|
||||
<button type="submit" class="button scheme--dark">Convert line endings to</button>
|
||||
<label class="inline-block m-b-2">
|
||||
<select class="button scheme--light text--uppercase js-converter__method" aria-label="Convert to">
|
||||
<option selected>lf</option>
|
||||
<option>crlf</option>
|
||||
<option>cr</option>
|
||||
</select>
|
||||
</label>
|
||||
</fieldset>
|
||||
<section>
|
||||
<h2 class="inherit-size">Output</h2>
|
||||
<div class="area scheme--white border-radius js-converter__output" contenteditable></div>
|
||||
</section>
|
||||
</form>
|
||||
|
||||
<script src="eol.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.slim.min.js"></script>
|
||||
<script src="ui.js"></script>
|
Reference in New Issue
Block a user