Chnage mode
Become to the code editor
Modes :
select modes
Themes :
select themes
Get code source
Fullscreen (Press F11 into, ESC exit)
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8" /> <title>Chnage mode - Editor.md examples</title> <link rel="stylesheet" href="css/style.css" /> <link rel="stylesheet" href="../css/editormd.css" /> <link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" /> </head> <body> <div id="layout"> <header> <h1>Chnage mode</h1> </header> <div id="test-editormd"> <textarea style="display:none;"></textarea> </div> </div> <script src="js/jquery.min.js"></script> <script src="../editormd.js"></script> <script type="text/javascript"> $(function() { var testEditor = editormd("test-editormd", { width : "90%", height : 720, watch : false, toolbar : false, codeFold : true, searchReplace : true, placeholder : "Enjoy coding!", value : (localStorage.mode) ? $("#"+localStorage.mode.replace("text/", "")+"-code").val() : $("#html-code").val(), theme : (localStorage.theme) ? localStorage.theme : "default", mode : (localStorage.mode) ? localStorage.mode : "text/html", path : '../lib/' }); }); </script> </body> </html>
$(function() { var testEditor = editormd("test-editormd", { width : "90%", height : 720, watch : false, toolbar : false, codeFold : true, searchReplace : true, placeholder : "Enjoy coding!", value : (localStorage.mode) ? $("#"+localStorage.mode.replace("text/", "")+"-code").val() : $("#html-code").val(), theme : (localStorage.theme) ? localStorage.theme : "default", mode : (localStorage.mode) ? localStorage.mode : "text/html", path : '../lib/' }); });
<?xml version="1.0" encoding="utf-8" ?> <root> <photo url="https://pandao.github.io/editor.md/examples/images/7.jpg"> <title>李健首张专辑《似水流年》封面</title> <width>360</width> <height>360</height> </photo> <photo url="https://pandao.github.io/editor.md/examples/images/7.jpg"> <title>李健首张专辑《似水流年》封面</title> <width>360</width> <height>360</height> </photo> <photo url="https://pandao.github.io/editor.md/examples/images/7.jpg"> <title>李健首张专辑《似水流年》封面</title> <width>360</width> <height>360</height> </photo> </root>
#!/usr/bin/ruby puts "Hello World!"; # Ruby knows what you # mean, even if you # want to do math on # an entire Array cities = %w[ London Oslo Paris Amsterdam Berlin ] visited = %w[Berlin Oslo] puts "I still need " + "to visit the " + "following cities:", cities - visited
{ "employees": [ { "firstName" : "Bill", "lastName" : "Gates" }, { "firstName" : "George", "lastName" : "Bush" }, { "firstName" : "Thomas", "lastName" : "Carter" } ], "employees": [ { "firstName" : "Bill", "lastName" : "Gates" }, { "firstName" : "George", "lastName" : "Bush" }, { "firstName" : "Thomas", "lastName" : "Carter" } ], }
<?php $app = new Phalcon\Mvc\Micro(); //Set a route with the name "show-post" $app->get('/blog/{year}/{title}', function ($year, $title) use ($app) { //.. show the post here return $year.$title; })->setName('show-post'); $app->get('/', function () { echo "
Welcome !
"; echo $app->url->get(array( 'for' => 'show-post', 'title' => 'php-is-a-great-framework', 'year' => 2012 )); }); $app->get('/posts/{year:[0-9]+}/{title:[a-zA-Z\-]+}', function ($year, $title) { echo "
Title: $title
"; echo "
Year: $year
"; }); //Requiring another file $app->get('/show/results', function () { require 'views/results.php'; }); //Returning a JSON $app->get('/get/some-json', function () { echo json_encode(array("some", "important", "data")); }); //This route makes a redirection to another route $app->post('/old/welcome', function () use ($app) { $app->response->redirect("new/welcome"); }); $app->post('/new/welcome', function () use ($app) { echo 'This is the new Welcome'; }); /* //Matches if the HTTP method is POST $app->post('/api/products/add', "add_product"); //Matches if the HTTP method is PUT $app->put('/api/products/update/{id}', "update_product"); //Matches if the HTTP method is DELETE $app->put('/api/products/remove/{id}', "delete_product"); //Matches if the HTTP method is GET or POST $app->map('/repos/store/refs')->via(array('GET', 'POST')); */ $app->handle(); ?>
#include "dialog.h" #include
int main(int argc, char *argv[]) { QApplication a(argc, argv); Dialog w; w.show(); return a.exec(); }
package com.demo.blog; import com.jfinal.aop.Before; import com.jfinal.core.Controller; @Before(BlogInterceptor.class) public class BlogController extends Controller { public void index() { setAttr("blogPage", Blog.me.paginate(getParaToInt(0, 1), 10)); render("blog.html"); } public void add() { } @Before(BlogValidator.class) public void save() { getModel(Blog.class).save(); redirect("/blog"); } public void edit() { setAttr("blog", Blog.me.findById(getParaToInt())); } @Before(BlogValidator.class) public void update() { getModel(Blog.class).update(); redirect("/blog"); } public void delete() { Blog.me.deleteById(getParaToInt()); redirect("/blog"); } }
package com.flite { import flash.net.*; import flash.events.*; import flash.display.*; /** * @package com.flite * @class XMLLoader * @author pandao pandao@vip.qq.com */ public class XMLLoder { public var xml:XML; public var url:String; public var list:XMLList; public var percent:Number = 0; public var onload:Function; public var onerror:Function; public var onpreload:Function; public var onprogress:Function; private var loader:URLLoader; public function XMLLoder(url:String) : void { this.url = url; xml = new XML(); xml.ignoreWhite = true; loader = new URLLoader(); loader.load(new URLRequest(url)); loader.addEventListener(Event.OPEN, preloadHandler); loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.addEventListener(ProgressEvent.PROGRESS, progressHandler); loader.addEventListener(Event.COMPLETE, loadedHandler); } private function preloadHandler(event:Event) : void { onpreload = onpreload || new Function; onpreload(event); } private function errorHandler(event:IOErrorEvent) : void { onerror = onerror || new Function; onerror(event); } private function progressHandler(event:ProgressEvent) : void { percent = Math.round((event.bytesLoaded / event.bytesTotal) * 100); onprogress = onprogress || new Function; onprogress(event, percent); } private function loadedHandler(event:Event) : void { xml = XML(loader.data); onload = onload || new Function; onload(xml); } } }
#!/usr/bin/perl use strict; use warnings; print "Hello, World...\n";
package main import ( "github.com/astaxie/beego" ) type MainController struct { beego.Controller } func (this *MainController) Get() { this.Ctx.WriteString("hello world") } func main() { beego.Router("/", &MainController{}) beego.Run() }
#!/usr/bin/env python from flask import Flask app = Flask(__name__) @app.route('/') def hello_world(): return 'Hello World!' if __name__ == '__main__': app.run()
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote, th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { margin:0;padding:0; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, video { display: inline-block; } body, button, input, select, textarea { font:12px/1.5 Tahoma, "Hiragino Sans GB", "Microsoft Yahei", Arial; } body { font-size:12px; color:#666; background:#fff url(../images/) no-repeat left top; } a { color:#444; text-decoration: none; } a:hover { color:#065BC2; text-decoration: none; } .clear { zoom:1; } .clear:after { content:""; height:0; visibility:hidden; clear:both; display:block; } img { border:none; vertical-align: middle; } ul { list-style: none; }