-
-
Notifications
You must be signed in to change notification settings - Fork 70
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
Markdown support for java #377
base: main
Are you sure you want to change the base?
Conversation
Added support for Feature line parsing in Markdown
matchFeatureLine enhanced to support dialect, and indent, Implemented setTokenMatched
All headerLines done. Feature, Rule, Background, Examples, Scenarios and ScenarioOutline
updated the razor template updated related classes with the new Parser constructor added testcases
Update to make file to include markdowns GenerateTokens updated to pass the right TokenMatcher based on the file extension Update to MarkdownTokenMatcher and test based on local testing
Updates after some fixes in identifying the right tokens, regexs, and making sure the build passes for java
Updated documentation
@@ -183,6 +183,7 @@ export default class GherkinInMarkdownTokenMatcher implements ITokenMatcher<Toke | |||
if (!result) { | |||
token.matchedType = TokenType.FeatureLine | |||
token.matchedText = token.line.trimmedLineText | |||
token.matchedKeyword = this.dialect.feature[0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this change intentional?
private final Pattern TABLE_ROW_PATTERN = Pattern.compile("^\\s{2,5}\\|.*\\S.*\\|$"); | ||
private static final Pattern LANGUAGE_PATTERN = Pattern.compile("^\\s*#\\s*language\\s*:\\s*([a-zA-Z\\-]+)\\s*$"); | ||
private static final String DEFAULT_DOC_STRING_SEPARATOR = "^\\s*(```[`]*)\\s*"; | ||
private String activeDocStringSeparator = DEFAULT_DOC_STRING_SEPARATOR; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't look accurate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've not had a chance to look in detail yet but I spotted a few things that are probably wrong. You'll want to make a fairly faithful re-implementation of the type script implementation.
And also, looks like CI is not passing. You can run make clean && make acceptance
locally.
Also, there have been some changes to main, it would be good to merge those into this PR.
🤔 What's changed?
Adding Markdown support for Java. This will enable to define BDDs in Markdown which just simply render better.
⚡️ What's your motivation?
Address #100 .
A new feature.
I love BDD, (well love may be a strong word, but ... you get the gist), and I love seeing BDDs in Markdown.
This was already supported in javascript so seemed simple enough to replicate to Java.
🏷️ What kind of change is this?
♻️ Anything particular you want feedback on?
General code feedback.
📋 Checklist:
This text was originally generated from a template, then edited by hand. You can modify the template here.