Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
88c31f3f
Commit
88c31f3f
authored
Jul 07, 2015
by
张博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug: export markdown and text
parent
0c22076e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
markdown.js
src/protocol/markdown.js
+1
-1
text.js
src/protocol/text.js
+1
-1
No files found.
src/protocol/markdown.js
View file @
88c31f3f
...
@@ -148,7 +148,7 @@ define(function(require, exports, module) {
...
@@ -148,7 +148,7 @@ define(function(require, exports, module) {
dataType
:
'markdown'
,
dataType
:
'markdown'
,
encode
:
function
(
json
)
{
encode
:
function
(
json
)
{
return
encode
(
json
);
return
encode
(
json
.
root
);
},
},
decode
:
function
(
markdown
)
{
decode
:
function
(
markdown
)
{
...
...
src/protocol/text.js
View file @
88c31f3f
...
@@ -83,7 +83,7 @@ define(function(require, exports, module) {
...
@@ -83,7 +83,7 @@ define(function(require, exports, module) {
mineType
:
'text/plain'
,
mineType
:
'text/plain'
,
encode
:
function
(
json
)
{
encode
:
function
(
json
)
{
return
encode
(
json
,
0
);
return
encode
(
json
.
root
,
0
);
},
},
decode
:
function
(
local
)
{
decode
:
function
(
local
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment