-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Transformer] Fix sections order #70
Comments
Good idea :) I will take a shot into implementing this. |
Thought: there could be different method of naming the section ( |
Also lines before first section are comments, so it should go to ``***Comments *** section:
to
|
Additional note: I will also need to handle possible comments:
There are following ways to deal with them:
It could be also possible to use parameter so others can decide what they're doing with section comments. |
I linked WIP PR. Regarding last comment I went with 4) (I'm keeping only the header comments from the first section of the same type). |
Fix sections order.
This could also support merging sections if they're defined more than once in a file, e.g.:
*** Keywords ***
Keyword 1
*** Test Cases ***
Test 1
*** Keywords ***
Keyword 2
Should be changed to:
*** Test Cases ***
Test 1
*** Keywords ***
Keyword 1
Keyword 2
The text was updated successfully, but these errors were encountered: