Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Json Editor | 5,376 | 141 | 36 | 5 years ago | 19 | August 07, 2016 | 461 | mit | JavaScript | |
JSON Schema Based Editor | ||||||||||
Epiceditor | 4,321 | 32 | 3 | 3 years ago | 1 | May 05, 2013 | 91 | mit | JavaScript | |
EpicEditor is an embeddable JavaScript Markdown editor with split fullscreen editing, live previewing, automatic draft saving, offline support, and more. For developers, it offers a robust API, can be easily themed, and allows you to swap out the bundled Markdown parser with anything you throw at it. | ||||||||||
Bootstrap Wysihtml5 | 4,220 | 45 | 3 years ago | July 20, 2021 | 205 | mit | JavaScript | |||
Simple, beautiful wysiwyg editor | ||||||||||
Json Editor | 3,875 | 11 | 16 | 15 days ago | 34 | August 16, 2022 | 190 | mit | JavaScript | |
JSON Schema Based Editor | ||||||||||
Medium Draft | 1,650 | 41 | 11 | 2 years ago | 39 | September 07, 2019 | 48 | mit | JavaScript | |
📝 A medium like Rich Text Editor built on draft-js with a focus on keyboard shortcuts. | ||||||||||
Easybuttons | 894 | 8 days ago | 9 | mit | C# | |||||
Add buttons to your inspector in Unity super easily with this simple attribute | ||||||||||
Markdownify | 893 | 3 | 2 years ago | March 09, 2016 | 3 | mit | JavaScript | |||
The simplest markdown editor with built in cloudinary image upload. | ||||||||||
Upmgitextension | 675 | 3 months ago | 6 | mit | C# | |||||
This package extends the UI of Unity Package Manager (UPM) for the packages installed from git repository. | ||||||||||
Esnextbin | 422 | 3 years ago | 5 | June 16, 2017 | 1 | JavaScript | ||||
:bento: Prototype apps in the browser with next generation JavaScript and NPM modules | ||||||||||
Awesome Summernote | 376 | 17 days ago | 5 | |||||||
A curated list for summernote modules |
KiCad Partslist Editor (PLE) allows you to export/import customizable fields from a hierarchical KiCad schematic file to and from a CSV.
Tested with Python 3.5.2 on Linux Mint 18, with KiCad 4.0.7 and KiCad 5 (nightly)
Running KiCad Partslist-editor using windows, requires either Python 3
and TKinter, or you can run the compiled version, which can be found in
the folder \build\exe.win32-3.4\
On linux you have to install python3 and python3-tk with
sudo apt-get install python3 python3-tk
Then you can run the part list editor with
python3 PartsListEditor.py
or just use the minimal shell script kicad-partlist-editor-linux.sh
The 'Load Schematic' button, allows one to open the kicad .sch files, which subsequently parses the selected schematic file and all its hierarchical daughter modules.
Hitting the 'Export CSV' button will allow you to save a .CSV file containing the parsed contents of the schematic files.
The 'Import CSV' button lets you select the csv file containing the the partslist as generated by KiCad PLE including the edits as made by the user using an external program.
The 'Save Schematic' button updates the schematic files with the updated information as loaded through the 'Import CSV' operation.
NOTE: the columns Reference
, Unit
and File
must not be edited
in the CSV file.
These functions need a scrollable canvas to be useful.
To change the fields that the KiCad PLE imports, exports and edits, edit the FieldKeywords.conf file
The syntax of the FieldKeywords.conf file is: First line is version string, this should not be changed Lastline is end-of-file indicator
All lines starting with "<" define a field KiCad PLE will look for in .SCH files
The syntax of such a line is as follows:
<Fieldname|Field_alias1|Field_alias2|Field_alias3>
The Fieldname is the primary alias, so it can be considered Field_alias0 as well.
The amount of aliases which can be added is theoretically unlimited, but the minimum is 1 (i.e. the field name)
<MyFieldName>
isn't supported, one has to declare it with an alias:
<MyFieldName|MyFieldName>
For scripting it would be nice, if the PLE could be used without any GUI.