Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <textarea id="editor" placeholder="Makdoun変換対応"></textarea><br>
<textarea placeholder="非対応"></textarea>
              
            
!

CSS

              
                textarea {
	width: 400px;
	height: 200px;
}

              
            
!

JS

              
                //https://github.com/jonmagic/copy-excel-paste-markdown
//MIT

var editor = document.getElementById("editor");

function columnWidth(rows, columnIndex) {
	return Math.max.apply(
		null,
		rows.map(function (row) {
			return row[columnIndex].length;
		})
	);
}

function looksLikeTable(data) {
	return true;
}

editor.addEventListener("paste", function (event) {
	var clipboard = event.clipboardData;
	var data = clipboard.getData("text/plain").trim();

	if (looksLikeTable(data)) {
		event.preventDefault();
	} else {
		return;
	}

	var rows = data.split(/[\n\u0085\u2028\u2029]|\r\n?/g).map(function (row) {
		console.log(row);
		return row.split("\t");
	});
	var columnWidths = rows[0].map(function (column, columnIndex) {
		return columnWidth(rows, columnIndex);
	});
	var markdownRows = rows.map(function (row, rowIndex) {
		// | Name         | Title | Email Address  |
		// |--------------|-------|----------------|
		// | Jane Atler   | CEO   | jane@acme.com  |
		// | John Doherty | CTO   | john@acme.com  |
		// | Sally Smith  | CFO   | sally@acme.com |
		return (
			"| " +
			row
				.map(function (column, index) {
					return column + Array(columnWidths[index] - column.length + 1).join(" ");
				})
				.join(" | ") +
			" |"
		);
		row.map;
	});
	markdownRows.splice(
		1,
		0,
		"|" +
			columnWidths
				.map(function (width, index) {
					return Array(columnWidths[index] + 3).join("-");
				})
				.join("|") +
			"|"
	);

	// https://www.w3.org/TR/clipboard-apis/#the-paste-action
	// When pasting, the drag data store mode flag is read-only, hence calling
	// setData() from a paste event handler will not modify the data that is
	// inserted, and not modify the data on the clipboard.

	event.target.value = markdownRows.join("\n");
	return false;
});

              
            
!
999px

Console