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

              
                <div id="app" class="main-container">
  <div class="left">
    <textarea v-model="preMark"></textarea>
	</div><div class="seperation"></div><div class="right" ><div v-html="postMark"></div></div>
</div>
              
            
!

CSS

              
                
html
	box-shadow: inset 4px 5px 8px -2px  #0B301A

body
	background-color: #26A65B
	padding: 0
	max-width: none

.main-container
	margin: 10vh 10vw
	padding: 0
	height: 79vh
	border-radius: 6px
	background-color: #eeeeee
	border: solid 2px #efefef
	opacity: .9
	white-space: nowrap
	box-shadow: 1px 1px 14px #0B301A
	div
		white-space: normal
		vertical-align: top
		display: inline-block
		box-sizing: border-box
		height: 100%

.left,.right
	width: calc(50% - 2px)
	padding: 20px

.left
	textarea
		width: 100%
		height: 100%
		resize: none
		border-radius: 4px
		padding: 10px
		box-sizing: border-box
		font-size: 15px
	
.seperation
	background-color: #006442
	width: 4px
	transform: scaleY(.93)
	border-radius: 2px

.right
	color: #0B301A
	font-size: 17px
	div
		padding-left: 10px
		height: 100%
		width: 100%
		overflow-y: scroll
              
            
!

JS

              
                var exText = "Heading\n=======\n\nSub-heading\n-----------\n \n### Another deeper heading\n \nParagraphs are separated\nby a blank line.\n\nLeave 2 spaces at the end of a line to do a  \nline break\n\nText attributes *italic*, **bold**, \n`monospace`, ~~strikethrough~~ .\n\nShopping list:\n\n  * apples\n  * oranges\n  * pears\n\nNumbered list:\n\n  1. apples\n  2. oranges\n  3. pears\n\nThe rain---not the reign---in\nSpain.\n\n *[Herman Fassett](https://freecodecamp.com/hermanfassett)*"

var app = new Vue({
	el: "#app",
	data: {
		preMark: exText
	},
	computed: {
		postMark: function() {
			return marked(this.preMark)
		}
	}
})
console.log(marked('I am using __markdown__.'));

              
            
!
999px

Console