jodit-react 1.3.16 → 1.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +68 -1
- package/README.md +56 -20
- package/build/jodit-react.js +1 -1
- package/examples/app.js +8 -3
- package/examples/build/app.js +548 -0
- package/examples/components/Form.js +23 -1
- package/examples/webpack.config.js +9 -1
- package/package.json +26 -24
- package/src/JoditEditor.d.ts +7 -4
- package/src/JoditEditor.js +6 -4
- package/src/index.js +2 -0
- package/.idea/codeStyles/Project.xml +0 -8
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/deployment.xml +0 -154
- package/.idea/encodings.xml +0 -4
- package/.idea/inspectionProfiles/Project_Default.xml +0 -17
- package/.idea/jodit-react.iml +0 -8
- package/.idea/jsLibraryMappings.xml +0 -6
- package/.idea/markdown-navigator-enh.xml +0 -29
- package/.idea/markdown-navigator.xml +0 -55
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vagrant.xml +0 -7
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -305
|
@@ -1,8 +1,30 @@
|
|
|
1
1
|
import React, { useCallback, useState } from 'react';
|
|
2
2
|
|
|
3
|
-
import JoditEditor from '../../src/';
|
|
3
|
+
import JoditEditor, { Jodit } from '../../src/';
|
|
4
4
|
import './Form.css';
|
|
5
5
|
|
|
6
|
+
/**
|
|
7
|
+
* @param {Jodit} jodit
|
|
8
|
+
*/
|
|
9
|
+
function preparePaste(jodit) {
|
|
10
|
+
jodit.e.on(
|
|
11
|
+
'paste',
|
|
12
|
+
e => {
|
|
13
|
+
if (confirm('Change pasted content?')) {
|
|
14
|
+
jodit.e.stopPropagation('paste');
|
|
15
|
+
jodit.s.insertHTML(
|
|
16
|
+
Jodit.modules.Helpers.getDataTransfer(e)
|
|
17
|
+
.getData(Jodit.constants.TEXT_HTML)
|
|
18
|
+
.replace(/a/g, 'b')
|
|
19
|
+
);
|
|
20
|
+
return false;
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{ top: true }
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
Jodit.plugins.add('preparePaste', preparePaste);
|
|
27
|
+
|
|
6
28
|
const Form = () => {
|
|
7
29
|
const [isSource, setSource] = useState(false);
|
|
8
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jodit-react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.19",
|
|
4
4
|
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
|
|
5
5
|
"main": "build/jodit-react.js",
|
|
6
6
|
"author": "Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)s",
|
|
@@ -16,42 +16,44 @@
|
|
|
16
16
|
"rte"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"eslint-plugin
|
|
20
|
-
"
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
20
|
+
"@typescript-eslint/parser": "^5.36.2",
|
|
21
|
+
"jodit": "^3.20.2"
|
|
21
22
|
},
|
|
22
23
|
"peerDependencies": {
|
|
23
24
|
"react": "~0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
|
|
24
25
|
"react-dom": "~0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
|
-
"@babel/core": "^7.
|
|
28
|
-
"@babel/eslint-parser": "^7.
|
|
29
|
-
"@babel/preset-env": "^7.
|
|
30
|
-
"@babel/preset-react": "^7.
|
|
31
|
-
"@types/react": "^
|
|
28
|
+
"@babel/core": "^7.19.0",
|
|
29
|
+
"@babel/eslint-parser": "^7.18.9",
|
|
30
|
+
"@babel/preset-env": "^7.19.0",
|
|
31
|
+
"@babel/preset-react": "^7.18.6",
|
|
32
|
+
"@types/react": "^18.0.18",
|
|
32
33
|
"babel": "^6.23.0",
|
|
33
34
|
"babel-cli": "^6.26.0",
|
|
34
|
-
"babel-loader": "^8.2.
|
|
35
|
+
"babel-loader": "^8.2.5",
|
|
35
36
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
36
|
-
"css-loader": "^
|
|
37
|
-
"eslint": "
|
|
38
|
-
"eslint-config-prettier": "^8.
|
|
39
|
-
"eslint-plugin-prettier": "^4.
|
|
40
|
-
"eslint-plugin-react": "^7.
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"react
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"webpack
|
|
49
|
-
"webpack-
|
|
37
|
+
"css-loader": "^6.7.1",
|
|
38
|
+
"eslint": "8.22.0",
|
|
39
|
+
"eslint-config-prettier": "^8.5.0",
|
|
40
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
41
|
+
"eslint-plugin-react": "^7.31.8",
|
|
42
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
43
|
+
"husky": "^8.0.1",
|
|
44
|
+
"lint-staged": "^13.0.3",
|
|
45
|
+
"prettier": "^2.7.1",
|
|
46
|
+
"react": "^18.2.0",
|
|
47
|
+
"react-dom": "^18.2.0",
|
|
48
|
+
"style-loader": "^3.3.1",
|
|
49
|
+
"webpack": "^5.74.0",
|
|
50
|
+
"webpack-cli": "^4.10.0",
|
|
51
|
+
"webpack-dev-server": "^4.11.0"
|
|
50
52
|
},
|
|
51
53
|
"scripts": {
|
|
52
54
|
"newversion": "npm run lint && npm update && rm -rf build/ && npm run build && npm version patch --no-git-tag-version && npm run github && npm publish ./",
|
|
53
55
|
"lint": "eslint ./",
|
|
54
|
-
"demo": "cd examples && export NODE_ENV=development && webpack
|
|
56
|
+
"demo": "cd examples && export NODE_ENV=development && webpack serve --config ./webpack.config.js --mode development",
|
|
55
57
|
"start": "npm run demo",
|
|
56
58
|
"build": "export NODE_ENV=production && webpack --mode production",
|
|
57
59
|
"github": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/jodit/jodit-react/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master"
|
package/src/JoditEditor.d.ts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { Jodit } from 'jodit/types/jodit';
|
|
3
3
|
|
|
4
4
|
declare module 'jodit-react' {
|
|
5
5
|
export interface IJoditEditorProps {
|
|
6
|
-
value: string
|
|
7
|
-
config?: Partial<
|
|
6
|
+
value: string;
|
|
7
|
+
config?: Partial<Jodit['options']>;
|
|
8
8
|
onChange: (newValue: string) => void;
|
|
9
9
|
onBlur: (newValue: string) => void;
|
|
10
10
|
}
|
|
11
|
-
const JoditEditor: React.
|
|
11
|
+
const JoditEditor: React.ForwardRefExoticComponent<
|
|
12
|
+
React.PropsWithoutRef<IJoditEditorProps> & React.RefAttributes<Jodit>
|
|
13
|
+
>;
|
|
12
14
|
export default JoditEditor;
|
|
15
|
+
export { Jodit };
|
|
13
16
|
}
|
package/src/JoditEditor.js
CHANGED
|
@@ -22,15 +22,17 @@ const JoditEditor = forwardRef(
|
|
|
22
22
|
|
|
23
23
|
useEffect(() => {
|
|
24
24
|
const element = textArea.current;
|
|
25
|
-
|
|
25
|
+
|
|
26
|
+
const jodit = Jodit.make(element, config);
|
|
27
|
+
textArea.current = jodit;
|
|
26
28
|
|
|
27
29
|
if (isFunction(editorRef)) {
|
|
28
|
-
editorRef(
|
|
30
|
+
editorRef(jodit);
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
return () => {
|
|
32
|
-
if (
|
|
33
|
-
|
|
34
|
+
if (jodit) {
|
|
35
|
+
jodit.destruct();
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
textArea.current = element;
|
package/src/index.js
CHANGED
package/.idea/deployment.xml
DELETED
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="PublishConfigData">
|
|
4
|
-
<serverData>
|
|
5
|
-
<paths name="Dima API">
|
|
6
|
-
<serverdata>
|
|
7
|
-
<mappings>
|
|
8
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
9
|
-
</mappings>
|
|
10
|
-
</serverdata>
|
|
11
|
-
</paths>
|
|
12
|
-
<paths name="Dima Control">
|
|
13
|
-
<serverdata>
|
|
14
|
-
<mappings>
|
|
15
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
16
|
-
</mappings>
|
|
17
|
-
</serverdata>
|
|
18
|
-
</paths>
|
|
19
|
-
<paths name="Dima Rutaxi">
|
|
20
|
-
<serverdata>
|
|
21
|
-
<mappings>
|
|
22
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
23
|
-
</mappings>
|
|
24
|
-
</serverdata>
|
|
25
|
-
</paths>
|
|
26
|
-
<paths name="Kalyanie.ru">
|
|
27
|
-
<serverdata>
|
|
28
|
-
<mappings>
|
|
29
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
30
|
-
</mappings>
|
|
31
|
-
</serverdata>
|
|
32
|
-
</paths>
|
|
33
|
-
<paths name="Slava 3">
|
|
34
|
-
<serverdata>
|
|
35
|
-
<mappings>
|
|
36
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
37
|
-
</mappings>
|
|
38
|
-
</serverdata>
|
|
39
|
-
</paths>
|
|
40
|
-
<paths name="Slava2">
|
|
41
|
-
<serverdata>
|
|
42
|
-
<mappings>
|
|
43
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
44
|
-
</mappings>
|
|
45
|
-
</serverdata>
|
|
46
|
-
</paths>
|
|
47
|
-
<paths name="banks">
|
|
48
|
-
<serverdata>
|
|
49
|
-
<mappings>
|
|
50
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
51
|
-
</mappings>
|
|
52
|
-
</serverdata>
|
|
53
|
-
</paths>
|
|
54
|
-
<paths name="calendar-popup">
|
|
55
|
-
<serverdata>
|
|
56
|
-
<mappings>
|
|
57
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
58
|
-
</mappings>
|
|
59
|
-
</serverdata>
|
|
60
|
-
</paths>
|
|
61
|
-
<paths name="datetimepicker">
|
|
62
|
-
<serverdata>
|
|
63
|
-
<mappings>
|
|
64
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
65
|
-
</mappings>
|
|
66
|
-
</serverdata>
|
|
67
|
-
</paths>
|
|
68
|
-
<paths name="gilcenter">
|
|
69
|
-
<serverdata>
|
|
70
|
-
<mappings>
|
|
71
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
72
|
-
</mappings>
|
|
73
|
-
</serverdata>
|
|
74
|
-
</paths>
|
|
75
|
-
<paths name="jodit">
|
|
76
|
-
<serverdata>
|
|
77
|
-
<mappings>
|
|
78
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
79
|
-
</mappings>
|
|
80
|
-
</serverdata>
|
|
81
|
-
</paths>
|
|
82
|
-
<paths name="manual">
|
|
83
|
-
<serverdata>
|
|
84
|
-
<mappings>
|
|
85
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
86
|
-
</mappings>
|
|
87
|
-
</serverdata>
|
|
88
|
-
</paths>
|
|
89
|
-
<paths name="maps-creator.com">
|
|
90
|
-
<serverdata>
|
|
91
|
-
<mappings>
|
|
92
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
93
|
-
</mappings>
|
|
94
|
-
</serverdata>
|
|
95
|
-
</paths>
|
|
96
|
-
<paths name="rutaxi">
|
|
97
|
-
<serverdata>
|
|
98
|
-
<mappings>
|
|
99
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
100
|
-
</mappings>
|
|
101
|
-
</serverdata>
|
|
102
|
-
</paths>
|
|
103
|
-
<paths name="rutaxi-minitax">
|
|
104
|
-
<serverdata>
|
|
105
|
-
<mappings>
|
|
106
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
107
|
-
</mappings>
|
|
108
|
-
</serverdata>
|
|
109
|
-
</paths>
|
|
110
|
-
<paths name="shop.xdan.ru">
|
|
111
|
-
<serverdata>
|
|
112
|
-
<mappings>
|
|
113
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
114
|
-
</mappings>
|
|
115
|
-
</serverdata>
|
|
116
|
-
</paths>
|
|
117
|
-
<paths name="slava3-minitax">
|
|
118
|
-
<serverdata>
|
|
119
|
-
<mappings>
|
|
120
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
121
|
-
</mappings>
|
|
122
|
-
</serverdata>
|
|
123
|
-
</paths>
|
|
124
|
-
<paths name="ssss">
|
|
125
|
-
<serverdata>
|
|
126
|
-
<mappings>
|
|
127
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
128
|
-
</mappings>
|
|
129
|
-
</serverdata>
|
|
130
|
-
</paths>
|
|
131
|
-
<paths name="xdan">
|
|
132
|
-
<serverdata>
|
|
133
|
-
<mappings>
|
|
134
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
135
|
-
</mappings>
|
|
136
|
-
</serverdata>
|
|
137
|
-
</paths>
|
|
138
|
-
<paths name="xdsoft">
|
|
139
|
-
<serverdata>
|
|
140
|
-
<mappings>
|
|
141
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
142
|
-
</mappings>
|
|
143
|
-
</serverdata>
|
|
144
|
-
</paths>
|
|
145
|
-
<paths name="Кальянные.РФ">
|
|
146
|
-
<serverdata>
|
|
147
|
-
<mappings>
|
|
148
|
-
<mapping local="$PROJECT_DIR$" web="/" />
|
|
149
|
-
</mappings>
|
|
150
|
-
</serverdata>
|
|
151
|
-
</paths>
|
|
152
|
-
</serverData>
|
|
153
|
-
</component>
|
|
154
|
-
</project>
|
package/.idea/encodings.xml
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
|
2
|
-
<profile version="1.0">
|
|
3
|
-
<option name="myName" value="Project Default" />
|
|
4
|
-
<inspection_tool class="CssUnknownProperty" enabled="true" level="WARNING" enabled_by_default="true">
|
|
5
|
-
<option name="myCustomPropertiesEnabled" value="true" />
|
|
6
|
-
<option name="myIgnoreVendorSpecificProperties" value="false" />
|
|
7
|
-
<option name="myCustomPropertiesList">
|
|
8
|
-
<value>
|
|
9
|
-
<list size="1">
|
|
10
|
-
<item index="0" class="java.lang.String" itemvalue="user-select" />
|
|
11
|
-
</list>
|
|
12
|
-
</value>
|
|
13
|
-
</option>
|
|
14
|
-
</inspection_tool>
|
|
15
|
-
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
16
|
-
</profile>
|
|
17
|
-
</component>
|
package/.idea/jodit-react.iml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="MarkdownEnhProjectSettings">
|
|
4
|
-
<AnnotatorSettings targetHasSpaces="true" linkCaseMismatch="true" wikiCaseMismatch="true" wikiLinkHasDashes="true" notUnderWikiHome="true" targetNotWikiPageExt="true" notUnderSourceWikiHome="true" targetNameHasAnchor="true" targetPathHasAnchor="true" wikiLinkHasSlash="true" wikiLinkHasSubdir="true" wikiLinkHasOnlyAnchor="true" linkTargetsWikiHasExt="true" linkTargetsWikiHasBadExt="true" notUnderSameRepo="true" targetNotUnderVcs="false" linkNeedsExt="true" linkHasBadExt="true" linkTargetNeedsExt="true" linkTargetHasBadExt="true" wikiLinkNotInWiki="true" imageTargetNotInRaw="true" repoRelativeAcrossVcsRoots="true" multipleWikiTargetsMatch="true" unresolvedLinkReference="true" linkIsIgnored="true" anchorIsIgnored="true" anchorIsUnresolved="true" anchorLineReferenceIsUnresolved="true" anchorLineReferenceFormat="true" anchorHasDuplicates="true" abbreviationDuplicates="true" abbreviationNotUsed="true" attributeIdDuplicateDefinition="true" attributeIdNotUsed="true" footnoteDuplicateDefinition="true" footnoteUnresolved="true" footnoteDuplicates="true" footnoteNotUsed="true" macroDuplicateDefinition="true" macroUnresolved="true" macroDuplicates="true" macroNotUsed="true" referenceDuplicateDefinition="true" referenceUnresolved="true" referenceDuplicates="true" referenceNotUsed="true" referenceUnresolvedNumericId="true" enumRefDuplicateDefinition="true" enumRefUnresolved="true" enumRefDuplicates="true" enumRefNotUsed="true" enumRefLinkUnresolved="true" enumRefLinkDuplicates="true" simTocUpdateNeeded="true" simTocTitleSpaceNeeded="true" />
|
|
5
|
-
<HtmlExportSettings updateOnSave="false" parentDir="" targetDir="" cssDir="css" scriptDir="js" plainHtml="false" imageDir="" copyLinkedImages="false" imagePathType="0" targetPathType="2" targetExt="" useTargetExt="false" noCssNoScripts="false" useElementStyleAttribute="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" linkFormatType="HTTP_ABSOLUTE" />
|
|
6
|
-
<LinkMapSettings>
|
|
7
|
-
<textMaps />
|
|
8
|
-
</LinkMapSettings>
|
|
9
|
-
</component>
|
|
10
|
-
<component name="MarkdownNavigatorHistory">
|
|
11
|
-
<PasteImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
|
|
12
|
-
<highlightList />
|
|
13
|
-
<directories />
|
|
14
|
-
<filenames />
|
|
15
|
-
</PasteImageHistory>
|
|
16
|
-
<CopyImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
|
|
17
|
-
<highlightList />
|
|
18
|
-
<directories />
|
|
19
|
-
<filenames />
|
|
20
|
-
</CopyImageHistory>
|
|
21
|
-
<PasteLinkHistory onPasteImageTargetRef="3" onPasteTargetRef="1" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteWikiElement="2" onPasteReferenceElement="2" hideInapplicableOperations="false" preserveLinkFormat="false" useHeadingForLinkText="false" linkFormat="0" saveAsDefaultOnOK="false" />
|
|
22
|
-
<TableToJsonHistory>
|
|
23
|
-
<entries />
|
|
24
|
-
</TableToJsonHistory>
|
|
25
|
-
<TableSortHistory>
|
|
26
|
-
<entries />
|
|
27
|
-
</TableSortHistory>
|
|
28
|
-
</component>
|
|
29
|
-
</project>
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="FlexmarkProjectSettings">
|
|
4
|
-
<FlexmarkHtmlSettings flexmarkSpecExampleRendering="0" flexmarkSpecExampleRenderHtml="false">
|
|
5
|
-
<flexmarkSectionLanguages>
|
|
6
|
-
<option name="1" value="Markdown" />
|
|
7
|
-
<option name="2" value="HTML" />
|
|
8
|
-
<option name="3" value="flexmark-ast:1" />
|
|
9
|
-
</flexmarkSectionLanguages>
|
|
10
|
-
</FlexmarkHtmlSettings>
|
|
11
|
-
</component>
|
|
12
|
-
<component name="MarkdownProjectSettings">
|
|
13
|
-
<PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.0" maxImageWidth="0" synchronizePreviewPosition="true" highlightPreviewType="LINE" highlightFadeOut="5" highlightOnTyping="true" synchronizeSourcePosition="true" verticallyAlignSourceAndPreviewSyncPosition="true" showSearchHighlightsInPreview="true" showSelectionInPreview="true" lastLayoutSetsDefault="false">
|
|
14
|
-
<PanelProvider>
|
|
15
|
-
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.panel" providerName="Default - Swing" />
|
|
16
|
-
</PanelProvider>
|
|
17
|
-
</PreviewSettings>
|
|
18
|
-
<ParserSettings gitHubSyntaxChange="false" correctedInvalidSettings="false" emojiShortcuts="1" emojiImages="0">
|
|
19
|
-
<PegdownExtensions>
|
|
20
|
-
<option name="ANCHORLINKS" value="true" />
|
|
21
|
-
<option name="ATXHEADERSPACE" value="true" />
|
|
22
|
-
<option name="FENCED_CODE_BLOCKS" value="true" />
|
|
23
|
-
<option name="INTELLIJ_DUMMY_IDENTIFIER" value="true" />
|
|
24
|
-
<option name="RELAXEDHRULES" value="true" />
|
|
25
|
-
<option name="STRIKETHROUGH" value="true" />
|
|
26
|
-
<option name="TABLES" value="true" />
|
|
27
|
-
<option name="TASKLISTITEMS" value="true" />
|
|
28
|
-
</PegdownExtensions>
|
|
29
|
-
<ParserOptions>
|
|
30
|
-
<option name="COMMONMARK_LISTS" value="true" />
|
|
31
|
-
<option name="EMOJI_SHORTCUTS" value="true" />
|
|
32
|
-
<option name="GFM_TABLE_RENDERING" value="true" />
|
|
33
|
-
<option name="PRODUCTION_SPEC_PARSER" value="true" />
|
|
34
|
-
<option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
|
|
35
|
-
</ParserOptions>
|
|
36
|
-
</ParserSettings>
|
|
37
|
-
<HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" addPageHeader="false" imageUriSerials="false" addDocTypeHtml="true" noParaTags="false" plantUmlConversion="0">
|
|
38
|
-
<GeneratorProvider>
|
|
39
|
-
<provider providerId="com.vladsch.idea.multimarkdown.editor.text.html.generator" providerName="Unmodified HTML Generator" />
|
|
40
|
-
</GeneratorProvider>
|
|
41
|
-
<headerTop />
|
|
42
|
-
<headerBottom />
|
|
43
|
-
<bodyTop />
|
|
44
|
-
<bodyBottom />
|
|
45
|
-
</HtmlSettings>
|
|
46
|
-
<CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssUriSerial="true" isCssTextEnabled="false" isDynamicPageWidth="true">
|
|
47
|
-
<StylesheetProvider>
|
|
48
|
-
<provider providerId="com.vladsch.idea.multimarkdown.editor.text.html.css" providerName="No Stylesheet" />
|
|
49
|
-
</StylesheetProvider>
|
|
50
|
-
<ScriptProviders />
|
|
51
|
-
<cssText />
|
|
52
|
-
<cssUriHistory />
|
|
53
|
-
</CssSettings>
|
|
54
|
-
</component>
|
|
55
|
-
</project>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/jodit-react.iml" filepath="$PROJECT_DIR$/.idea/jodit-react.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|
package/.idea/vagrant.xml
DELETED