Skip to content

Commit b4494eb

Browse files
committed
SVG editor readme updated.
1 parent a02540e commit b4494eb

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

src/svg-display-editor/README.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@ Point numbers (_id field of _realtimeData_ collection) also can be used to ident
3535
There is plenty of material available throughout the web to help learn how to use the Inkscape SVG graphics editor. We just point here some useful resources.
3636

3737
* Inkscape official manual
38-
http://tavmjong.free.fr/INKSCAPE/MANUAL/html/
38+
[http://tavmjong.free.fr/INKSCAPE/MANUAL/html/](http://tavmjong.free.fr/INKSCAPE/MANUAL/html/)
3939

4040
* Inkscape tutorials, books, videos, etc.
41-
https://inkscape.org/en/learn/
41+
[https://inkscape.org/en/learn/](https://inkscape.org/en/learn/)
4242

4343
An interactive tutorial is available inside the editor in many languages (menu Help \| Tutorials).
4444

4545
Other useful related resources.
4646

47-
* https://www.opto22.com/support/resources-tools/demos/svg-image-library
48-
* https://github.com/willianjusten/awesome-svg
49-
* https://github.com/PanderMusubi/inkscape-open-symbols
50-
* https://sourceforge.net/projects/oshmiopensubstationhmi/files/svg-clipart.zip/download
51-
* https://www.svgrepo.com
52-
* https://www.vecteezy.com
47+
* [https://www.opto22.com/support/resources-tools/demos/svg-image-library](https://www.opto22.com/support/resources-tools/demos/svg-image-library)
48+
* [https://github.com/willianjusten/awesome-svg](https://github.com/willianjusten/awesome-svg)
49+
* [https://github.com/PanderMusubi/inkscape-open-symbols](https://github.com/PanderMusubi/inkscape-open-symbols)
50+
* [https://sourceforge.net/projects/oshmiopensubstationhmi/files/svg-clipart.zip/download](https://sourceforge.net/projects/oshmiopensubstationhmi/files/svg-clipart.zip/download)
51+
* [https://www.svgrepo.com](https://www.svgrepo.com)
52+
* [https://www.vecteezy.com](https://www.vecteezy.com)
5353

5454
## SCADA Animations
5555

5656
To edit SCADA animation properties of an SVG object, right-click the mouse and choose Object Properties (please notice that albeit the Inkscape software interface is localized in many languages, the Object Properties menu is only available in English).
5757

58-
![SVG Editor](../../docs/screenshots/editor.png "{json:scada} SVG Editor")
58+
![SVG Editor](https://scadavis.io/images/image2.png "SVG Editor")
5959
Editor interface showing the “Object Properties” dialog.
6060

6161
Follow below a list of attributes (“Object Properties\|Tab”) that can be utilized to animate graphics.
@@ -107,9 +107,9 @@ When the text of the object contains the “\|” (pipe) character, it is used t
107107

108108
For a complete _printf_ convention reference, see
109109

110-
* http://www.cplusplus.com/reference/cstdio/printf/
110+
* [http://www.cplusplus.com/reference/cstdio/printf/](http://www.cplusplus.com/reference/cstdio/printf/)
111111

112-
* https://alvinalexander.com/programming/printf-format-cheat-sheet
112+
* [https://alvinalexander.com/programming/printf-format-cheat-sheet](https://alvinalexander.com/programming/printf-format-cheat-sheet)
113113

114114
This convention can be used to format number and string values.
115115

@@ -122,9 +122,9 @@ When the text of the object contains the “\|” (pipe) character, it is used t
122122

123123
For a reference see
124124

125-
* https://github.com/d3/d3-format
125+
* [https://github.com/d3/d3-format](https://github.com/d3/d3-format)
126126

127-
* http://bl.ocks.org/zanarmstrong/05c1e95bf7aa16c4768e
127+
* [http://bl.ocks.org/zanarmstrong/05c1e95bf7aa16c4768e](http://bl.ocks.org/zanarmstrong/05c1e95bf7aa16c4768e)
128128

129129
* **Boolean** convention.
130130

@@ -358,7 +358,7 @@ Vega specification markup options:
358358
* **vega-json**: old style Vega 1/2 specification with no tags associated. In the first line of the script must be put a URL to a specification or the specification itself beginning with a “{” char. In the data section of the specification define “update_period“ in seconds for the periodic update of the data. DEPRECATED, use vega4-json!
359359
* **vega4-json**: new style Vega 3/4/5 specification with no tags associated. In the first line of the script must be put a URL to a specification or the specification itself beginning with a “{” char. In the data section of the specification define “update_period“ in seconds for the periodic update of the data.
360360

361-
See Vega project site for tools and documentation of syntax: https://vega.github.io/vega/.
361+
See Vega project site for tools and documentation of syntax: [https://vega.github.io/vega/docs/](https://vega.github.io/vega/docs/).
362362

363363
In the Vega file (“data” / “values” section), use the following markup to refer to the tag list:
364364

@@ -451,7 +451,7 @@ Functions available:
451451

452452
* **#vega4**, **#vega4-json** or **#vega-lite** in the field “Tag” - define a Vega (version 3/4/5) or VegaLite chart. List the tags in the “Source” field separated by commas. You can set the number of minutes to retrieve for historical data putting the pipe character and a number after the point list in the “Source” field (e.g.: “38038\|15”). The field Prompt must contain the Vega chart specification (JSON code that must begin with a ‘”{” ) or a URL link to a file (e.g. “http://site.com/charts/stacked.json”).
453453

454-
See the Vega project site for tools and documentation of syntax: https://vega.github.io/vega/.
454+
See the Vega project site for tools and documentation of syntax: [https://vega.github.io/vega/docs/](https://vega.github.io/vega/docs/).
455455

456456
In the Vega file (“data” / “values” section), use the markup below to refer to the tag list (from the “Source” field).
457457

@@ -491,4 +491,3 @@ To debug scripts in a SVG display file, do the following:
491491
* press F12 to open the browser Developer Tools and then F5 to reload.
492492
* The Chromium browser will stop execution when found the introduced breakpoint. Use the execution control keys F10, F11, F9, F8 to forward execution.
493493

494-

0 commit comments

Comments
 (0)