-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.xml
More file actions
42 lines (35 loc) · 1.6 KB
/
config.xml
File metadata and controls
42 lines (35 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version='1.0' encoding='UTF-8'?>
<widget xmlns="http://wirecloud.conwet.fi.upm.es/ns/macdescription/1" vendor="CoNWeT" name="markdown-editor" version="0.2.0">
<macversion>2</macversion>
<details>
<title>Markdown editor widget</title>
<homepage>https://github.com/mognom/markdown-editor-widget</homepage>
<authors>Alejandro Rodríguez</authors>
<email>alex.rodriguez@conwet.com</email>
<image>images/markdowneditor.png</image>
<smartphoneimage></smartphoneimage>
<description>This widget allows users to edit markdown</description>
<longdescription>DESCRIPTION.md</longdescription>
<changelog>doc/changelog.md</changelog>
<doc>doc/userguide.md</doc>
<license>Apache-2.0</license>
<issuetracker>https://github.com/mognom/markdown-editor-widget/issues</issuetracker>
</details>
<requirements>
<feature name="FullscreenWidget"/>
</requirements>
<preferences>
</preferences>
<wiring>
<inputendpoint name="input" type="text" label="markdown input" description="New markdown text" friendcode="text markdown"/>
<outputendpoint name="output" type="text" label="markdown output" description="The edited markdown text" friendcode="markdown"/>
</wiring>
<contents src="index.html" useplatformstyle="true" />
<rendering height="300px" width="30%"/>
<scripts>
<script src="lib/js/marked.min.js" />
<script src="lib/js/simplemde.min.js" />
<script src="lib/js/highlight.pack.js" />
<script src="js/MarkdownEditor.js" />
</scripts>
</widget>