Alex Ott created ZEPPELIN-4870: ---------------------------------- Summary: Improve parsing of the paragraph properties Key: ZEPPELIN-4870 URL: https://issues.apache.org/jira/browse/ZEPPELIN-4870 Project: Zeppelin Issue Type: Improvement Components: zeppelin-zengine Affects Versions: 0.9.0 Reporter: Alex Ott
Right now, local paragraph properties doesn't support parsing of the values that contain comma, even if it's put into the quotes: for example, the following: {noformat} %cassandra(locale=ruRU, timeFormat="E, d MMM yy", floatPrecision = 5, outputFormat=cql) {noformat} is parsed into: {noformat} 'd MMM yy"': 'd MMM yy"', 'floatPrecision': '5', 'timeFormat': '"E', 'locale': 'ruRU', 'outputFormat': 'cql' {noformat} It would be really useful to have the ability to parse such "quoted" values even if they contain comma, or other special characters. The code is here: https://github.com/apache/zeppelin/blob/master/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/ParagraphTextParser.java -- This message was sent by Atlassian Jira (v8.3.4#803005)