Fix option reference, remove line continuation hack.
[dygraphs.git] / generate-documentation.py
index 613dec7..0614bef 100755 (executable)
@@ -21,8 +21,6 @@ for line in file('dygraph-options-reference.js'):
   elif '</JSON>' in line:
     in_json = False
   elif in_json:
-    if line.endswith("\\\n"): # hacked in line continuation support with trailing \.
-      line = line[:-2]
     js += line
 
 # TODO(danvk): better errors here.