<!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 下载量 149 浏览量
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
- 粉丝: 1743
- 资源: 523
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 探索高维数据可视化:技术、实践与代码示例
- 基于java swing+jdbc+mysql实现的超市购物管理系统实习报告.docx
- 控制ppt图案填充透明度,极大增加ppt的显示效果
- 递推平均滤波法是一种简单而有效的滤波方法,通过计算一段时间内的数据平均值来平滑数据,达到滤波的目的
- 关闭浏览器跨域启动脚本chrome.bat
- JDK Development Kit 17.0.13 downloads官方下载
- TIA PORTAL V19硬件支持包HSP(2024.10最新).txt
- 卡西欧手表GA-100(5081)中文使用手册
- WINCC(虚拟机)PC1与博途(虚拟机)PC2通讯(虚拟PLC装在PC1主机上)
- 【源码+数据库】基于ssm框架+mysql实现的学生选课信息管理系统
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功