plugin_Node.py 321 B

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