<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: editormd.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: editormd.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/*
* Editor.md
*
* @file editormd.js
* @version v1.4.5
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-06-02
*/
;(function(factory) {
"use strict";
// CommonJS/Node.js
if (typeof require === "function" && typeof exports === "object" && typeof module === "object")
{
module.exports = factory;
}
else if (typeof define === "function") // AMD/CMD/Sea.js
{
if (define.amd) // for Require.js
{
/* Require.js define replace */
}
else
{
define(["jquery"], factory); // for Sea.js
}
}
else
{
window.editormd = factory();
}
}(function() {
/* Require.js assignment replace */
"use strict";
var $ = (typeof (jQuery) !== "undefined") ? jQuery : Zepto;
if (typeof ($) === "undefined") {
return ;
}
/**
* editormd
*
* @param {String} id 编辑器的ID
* @param {Object} options 配置选项 Key/Value
* @returns {Object} editormd 返回editormd对象
*/
var editormd = function (id, options) {
return new editormd.fn.init(id, options);
};
editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.4.5";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";
editormd.toolbarModes = {
full : [
"undo", "redo", "|",
"bold", "del", "italic", "quote", "ucwords", "uppercase", "lowercase", "|",
"h1", "h2", "h3", "h4", "h5", "h6", "|",
"list-ul", "list-ol", "hr", "|",
"link", "reference-link", "image", "code", "preformatted-text", "code-block", "table", "datetime", "emoji", "html-entities", "pagebreak", "|",
"goto-line", "watch", "preview", "fullscreen", "clear", "search", "|",
"help", "info"
],
simple : [
"undo", "redo", "|",
"bold", "del", "italic", "quote", "uppercase", "lowercase", "|",
"h1", "h2", "h3", "h4", "h5", "h6", "|",
"list-ul", "list-ol", "hr", "|",
"watch", "preview", "fullscreen", "|",
"help", "info"
],
mini : [
"undo", "redo", "|",
"watch", "preview", "|",
"help", "info"
]
};
editormd.defaults = {
mode : "gfm", //gfm or markdown
theme : "default",
name : "",
value : "", // value for CodeMirror, if mode not gfm/markdown
markdown : "",
appendMarkdown : "", // if in init textarea value not empty, append markdown to textarea
width : "100%",
height : "100%",
path : "./lib/", // Dependents module file directory
pluginPath : "", // If this empty, default use settings.path + "../plugins/"
delay : 300, // Delay parse markdown to html, Uint : ms
autoLoadModules : true, // Automatic load dependent module files
watch : true,
placeholder : "Enjoy Markdown! coding now...",
gotoLine : true,
codeFold : false,
autoHeight : false,
autoFocus : true,
autoCloseTags : true,
searchReplace : true,
syncScrolling : true,
readOnly : false,
tabSize : 4,
indentUnit : 4,
lineNumbers : true,
lineWrapping : true,
autoCloseBrackets : true,
showTrailingSpace : true,
matchBrackets : true,
indentWithTabs : true,
styleSelectedText : true,
matchWordHighlight : true, // options: true, false, "onselected"
styleActiveLine : true, // Highlight the current line
dialogLockScreen : true,
dialogShowMask : true,
dialogDraggable : true,
dialogMaskBgColor : "#fff",
dialogMaskOpacity : 0.1,
fontSize : "13px",
saveHTMLToTextarea : false,
disabledKeyMaps : [],
onload : function() {},
onresize : function() {},
onchange : function() {},
onwatch : null,
onunwatch : null,
onpreviewing : function() {},
onpreviewed : function() {},
onfullscreen : function() {},
onfullscreenExit : function() {},
onscroll : function() {},
onpreviewscroll : function() {},
imageUpload : false,
imageFormats : ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
imageUploadURL : "",
crossDomainUpload : false,
uploadCallbackURL : "",
toc : true, // Table of contents
tocm : false, // Using [TOCM], auto create ToC dropdown menu
tocTitle : "", // for ToC dropdown menu btn
tocDropdown : false,
tocContainer : "",
tocStartLevel : 1, // Said from H1 to create ToC
htmlDecode : false, // Open the HTML tag identification
pageBreak : true, // Enable parse page break [========]
atLink : true, // for @link
emailLink : true, // for email address auto link
taskList : false, // Enable Github Flavored Markdown task lists
emoji : false, // :emoji: , Support Github emoji, Twitter Emoji (Twemoji);
// Support FontAwesome icon emoji :fa-xxx: > Using fontAwesome icon web fonts;
// Support Editor.md logo icon emoji :editormd-logo: :editormd-logo-1x: > 1~8x;
tex : false, // TeX(LaTeX), based on KaTeX
flowChart : false, // flowChart.js only support IE9+
sequenceDiagram : false, // sequenceDiagram.js only support IE9+
previewCodeHighlight : true,
toolbar : true, // show/hide toolbar
toolbarAutoFixed : true, // on window scroll auto fixed position
toolbarIcons : "full",
toolbarTitles : {},
toolbarHandlers : {
ucwords : function() {
return editormd.toolbarHandlers.ucwords;
},
lowercase : fun
没有合适的资源?快使用搜索试试~ 我知道了~
提供了丰富多样的 Spring、SpringMVC、MyBatis 和 Spring Boot 案例
共2000个文件
xml:580个
js:434个
html:326个
0 下载量 46 浏览量
2024-11-04
22:12:09
上传
评论
收藏 84.95MB ZIP 举报
温馨提示
提供了丰富多样的 Spring、SpringMVC、MyBatis 和 Spring Boot 案例,对于 Java EE 开发者来说是一个很有价值的资源库。 其优点显著。首先,案例涵盖了从基础配置到高级功能实现的广泛内容。例如,在 Spring 部分,包含了 bean 实例化方式、依赖注入、AOP、Scope 注解使用、EL 使用以及各种常用配置等案例,能帮助开发者全面掌握 Spring 框架的核心概念和使用技巧。SpringMVC 的案例涉及基础配置、文件上传、注解使用等多个方面,有助于深入理解 Web 开发中的相关技术。MyBatis 部分则从基本使用到复杂的配置,如 typeHandler、resultMap、缓存、动态 SQL 等均有涉及,对使用 MyBatis 进行数据库操作提供了详细的指导。Spring Boot 相关案例更是丰富,包括自动配置、Web 开发、消息推送、安全控制、数据缓存、事务处理以及与其他技术的整合等,展示了 Spring Boot 在企业级应用开发中的强大功能和便捷性。 1。测试运行成功请放心下载使用! 2。可用于毕设、课设、作业等,仅供学习参考。
资源推荐
资源详情
资源评论
收起资源包目录
提供了丰富多样的 Spring、SpringMVC、MyBatis 和 Spring Boot 案例 (2000个子文件)
AUTHORS 6KB
Main.class 6KB
Main.class 3KB
ELConfig.class 3KB
UserController.class 3KB
UserController.class 3KB
DBUtils.class 2KB
DBUtils.class 2KB
User.class 2KB
User.class 2KB
WebInit.class 2KB
WebInit.class 2KB
HelloServiceAutoConfiguration.class 1KB
DemoListener.class 1KB
MVCConfig.class 1KB
MVCConfig.class 1KB
UserMapper.class 1KB
DemoBeanIntegrationTests.class 1KB
Main.class 1KB
Main.class 896B
DemoPublish.class 877B
UserBean.class 872B
UserBean.class 872B
MyRestController.class 861B
MyRestController.class 861B
Main.class 838B
Main.class 838B
HelloService.class 750B
TestConfig.class 750B
HelloServiceProperties.class 749B
UseFunctionService.class 714B
DemoService1.class 707B
FunctionService.class 706B
DemoEvent.class 669B
DemoBean.class 610B
AppTest.class 595B
WiselyConfiguration.class 592B
App.class 531B
TestBean.class 531B
MyConfig.class 452B
MyConfig.class 452B
MyConfig.class 452B
MyConfig.class 367B
UserMapper.class 363B
mvnw.cmd 5KB
mvnw.cmd 5KB
mvnw.cmd 5KB
mvnw.cmd 5KB
mvnw.cmd 5KB
config 302B
bootstrap.css 141KB
bootstrap.css 141KB
bootstrap.css 141KB
bootstrap.css 141KB
bootstrap.min.css 115KB
bootstrap.min.css 115KB
bootstrap.min.css 113KB
bootstrap.min.css 113KB
bootstrap.min.css 111KB
bootstrap.min.css 111KB
editormd.css 81KB
editormd.css 81KB
editormd.min.css 60KB
editormd.min.css 60KB
editormd.preview.css 59KB
editormd.preview.css 59KB
editormd.preview.min.css 44KB
editormd.preview.min.css 44KB
ambiance.css 26KB
ambiance.css 26KB
bootstrap-theme.css 22KB
bootstrap-theme.css 22KB
bootstrap-theme.css 22KB
bootstrap-theme.css 22KB
bootstrap-theme.min.css 19KB
bootstrap-theme.min.css 19KB
bootstrap-theme.min.css 19KB
bootstrap-theme.min.css 19KB
bootstrap-theme.min.css 19KB
bootstrap-theme.min.css 19KB
codemirror.css 8KB
codemirror.css 8KB
jsdoc-default.css 6KB
jsdoc-default.css 6KB
codemirror.min.css 5KB
codemirror.min.css 5KB
qunit-1.16.0.css 5KB
qunit-1.16.0.css 5KB
solarized.css 5KB
solarized.css 5KB
mdn-like.css 5KB
mdn-like.css 5KB
merge.css 3KB
merge.css 3KB
lint.css 3KB
lint.css 3KB
xq-dark.css 3KB
xq-dark.css 3KB
lesser-dark.css 2KB
lesser-dark.css 2KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
pk_xz123456
- 粉丝: 2772
- 资源: 3962
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于C#的教材库存管理软件设计与实现源码(小程序毕业设计完整源码).zip
- 基于Java及多语言的红色研学基地设计源码
- 基于小程序的企业产品推广系统源码(小程序毕业设计完整源码).zip
- 基于小程序的物流管理系统源码(小程序毕业设计完整源码+LW).zip
- 基于uniCloud和uniAD平台的趣味合成类游戏设计源码
- 基于TypeScript和Vue的Web高校学生管理系统设计源码
- 基于小程序的汽车租赁系统的设计与实现源码(小程序毕业设计完整源码).zip
- 基于智能推荐的校园社区服务源码(小程序毕业设计完整源码).zip
- 基于校园作业反馈的家校联系源码(小程序毕业设计完整源码).zip
- 基于JavaScript的农选App设计源码:MRD、PRD、原型图及前端界面交互
- 基于小程序的大学校园二手书籍拍卖小程序源码(小程序毕业设计完整源码).zip
- 基于小程序的学生毕业管理系统源码(小程序毕业设计完整源码+LW).zip
- 基于小程序的学生购电小程序源码(小程序毕业设计完整源码).zip
- 平行夹取移栽机sw18可编辑全套技术资料100%好用.zip
- 基于小程序的小演员招募小程序的设计与开发源码(小程序毕业设计完整源码).zip
- 屏蔽罩切割折弯机(含DFM)sw17可编辑全套技术资料100%好用.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功