玛氪宕·梦魔(Markdown Memo),使用Markdown的云端备忘录,百度IFE的RIA启航班的不合格的作业,才……才没有什么阴谋呢!
源gitee链接https://gitee.com/arathi/MarkdownMemo?_from=gitee_search
				
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							65 lines
						
					
					
						
							2.2 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							65 lines
						
					
					
						
							2.2 KiB
						
					
					
				| <!DOCTYPE html> | |
| <html lang="zh"> | |
|     <head> | |
|         <meta charset="utf-8" /> | |
|         <title>Multi Editor.md - 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" /> | |
|         <style>             | |
|             h3 { | |
|                 width : 90%; | |
|                 margin: 0 auto 15px; | |
|             } | |
|              | |
|             .editormd { | |
|                 margin: 20px auto; | |
|             } | |
|         </style> | |
|     </head> | |
|     <body> | |
|         <div id="layout"> | |
|             <header> | |
|                 <h1>Multi Editor.md</h1> | |
|                 <p>多个 Editor.md 并存</p> | |
|                 <br/> | |
|             </header> | |
|             <h3>Editor.md A</h3> | |
|             <div id="test-editormd"></div> | |
|             <h3>Editor.md B</h3> | |
|             <div id="test-editormd2"></div> | |
|             <h3>Editor.md C</h3> | |
|             <div id="test-editormd3"></div> | |
|         </div> | |
|          | |
|         <script src="js/jquery.min.js"></script>  | |
|         <script src="../editormd.js"></script>  | |
|         <script type="text/javascript"> | |
|             $(function() {                         | |
|                 var testEditormd = editormd("test-editormd", { | |
|                     width: "90%", | |
|                     height: 480, | |
|                     markdown : "#### Editor.md A", | |
|                     path : '../lib/' | |
|                 }); | |
| 
 | |
|                 var testEditormd2 = editormd("test-editormd2", { | |
|                     width: "50%", | |
|                     height: 280, | |
|                     markdown : "#### Editor.md B\n\n多个 Editor.md 并存", | |
|                     path : '../lib/', | |
|                     toolbarIcons: 'mini' | |
|                 }); | |
| 
 | |
|                 var testEditormd3 = editormd("test-editormd3", { | |
|                     width: "60%", | |
|                     height: 380, | |
|                     markdown : "#### Editor.md C", | |
|                     path : '../lib/', | |
|                     toolbarIcons: 'simple', | |
|                     watch: false | |
|                 }); | |
|             }); | |
|         </script> | |
|     </body> | |
| </html> |