[WIP] Parser for github issues created#18
Conversation
GoelJatin
left a comment
There was a problem hiding this comment.
Before we merge this, did we also try with any of the existing options for markdown parsing?
What are the challenges / issues we faced with those?
| import re | ||
|
|
||
|
|
||
| def parser(issue: str): |
There was a problem hiding this comment.
Did we test it works in al cases?
Very rare case, but what if a speaker intentionally leaves out a section intentionally? What happens then?
Need to add more error handling
There was a problem hiding this comment.
I have tested manually on test cases that i can think of.
If speaker leaves out a section, then value corresponding to that section will be empty. I will add tests, that will clear a lot of things.
| else: | ||
| break | ||
|
|
||
| talk_details = json.dumps(talk_details) |
There was a problem hiding this comment.
why the extra step of dumping and then loading again?
Most of the markdown parsers that i have seen convert |
Fixes #8
Changes: