aktos-io / aecad

Open Source Circuit Board Design Software that runs on the browser and desktop
https://aktos.io/aecad
54 stars 10 forks source link

.netlist syntax should support declaring "connection name"s in value field #93

Open ceremcem opened 2 years ago

ceremcem commented 2 years ago

Currently .netlist syntax require named connections to be defined in the key field:

netlist:
  "gnd": "a.1 b.2"
  "5v": "a.2 k.5"
  1: "c.2 5v"

It must support the following variations:

netlist:
  "gnd": "a.1 b.2"
  1: "c.2 5v a.2"
  "k.5": "5v"