Pekka Klärck
Pekka Klärck
I don't actually understand the whole need for argument conversion in Browser side. AFAIK it uses `BuiltIn.run_keyword` and it should handle conversion based on the type information of the called...
Did you test running acceptance tests with these changes? This change itself needs tests as well.
This fix causes other problems, existing tests fail, and doesn't have tests for the fix itself. No updates since January. Closing.
Possible solutions: 1. Make it possible to tell that the merge message should be plain text. 2. Make it possible to convert _any_ message from HTML to plain text. 3....
Converting HTML to text ought to be pretty easy with [html.parser](https://docs.python.org/3/library/html.parser.html). We'd only need to implement `handle_data` go get the text but could also easily implement e.g. `` to `*`...
After thinking this a bit more, I believe going with the option 2 discussed above is the best idea. I set the issue title and labels accordingly. Next we'd need...
Added a label indicating help would be appreciated. Although this is far from trivial to implement, I also added a label telling that this is ok for new contributors.
Design option 2 discussed in my [earlier comment](https://github.com/robotframework/robotframework/issues/4068#issuecomment-907412131) would in practice mean something like this: 1. Create `html_to_text` utility. It can utilize `html.parser` as discussed above. 2. Add code like...
Apparently @simonmeggle hasn't worked on this lately so go ahead @makeevolution!
A problem with the `-tag` syntax is that someone may be using tags that start with a hyphen. This is how I think we can mitigate that problem: 1. Only...