Skip to content

alsofronie/inline-editor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inline Editor

I've started a jquery editor that will replace this here.

A Medium like inline editor

Getting Started

At a minimum, you must download the javascript file (production version or the development version) and the css styles for preview (production version or the development version) and the editor css style (production version or the development version).

In your web page:

<head>
	...
	<link rel="stylesheet" type="text/css" href="../dist/css/inline-editor-frontend.min.css" />
	...
</head>
<body>
	...
	<div class="ied-content">
		<div id="editor" class="ied-article">
			<section class="col">
				<h1>This is the title</h1>
			</section>
		</div>
	</div>
	...

	<script src="jquery.js"></script>
	<script src="../dist/inline-editor.min.js"></script>
	<script>
	jQuery(function($) {
		$('#editor').inline_editor();
	});
	</script>

Documentation

(Coming soon)

Examples

(Coming soon)

Release History

(Nothing yet)

About

An inline Javascript HTML Editor like Medium

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published