plugin_Node.py 274 B

123456789101112
  1. from __future__ import print_function
  2. def setup():
  3. config = dict()
  4. config["pluginType"] = "structuredObjectCreation";
  5. config["tagName"] = "Node";
  6. return config
  7. def createElement(element, fc, fh):
  8. print("/* Hello from plugin */", end='\n', file=fc)
  9. return "continue"