We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Original issue: chintans1/markdown-to-jira#10
I tested with version 3.0
This:
| Header 1 | Header 2 | Header 3 | |-----|-----|-----| | A | B | C | | D | E | F |
Unfortunaltely is not properly converted to this:
|| Header 1 || Header 2 || Header 3 || | A | B | C | | D | E | F |
This result is given instead:
My test script:
import jira2md from "jira2md"; const test = "this is a simple table\n" + "\n" + "| Schema Hint | Value |\n" + "| ----------------- | ----- |\n" + "| autosar_4-3-0.xsd | 4.3.0 |\n" + "| autosar_4-3-1.xsd | 4.3.1 |\n" + "| autosar_4-4-0.xsd | 4.4.0 |" const result = jira2md.to_jira(test); console.info(result)
Result:
this is a simple table | Schema Hint | Value | | ----------------- | ----- | | autosar_4-3-0.xsd | 4.3.0 | | autosar_4-3-1.xsd | 4.3.1 | | autosar_4-4-0.xsd | 4.4.0 |
The text was updated successfully, but these errors were encountered:
Support unordered lists which start with dashes (kylefarris#24)
7625f7a
- Fix panels and table conversion (kylefarris#26) - Convert yaml code properly to jira
No branches or pull requests
Original issue: chintans1/markdown-to-jira#10
I tested with version 3.0
This:
Unfortunaltely is not properly converted to this:
This result is given instead:
My test script:
Result:
The text was updated successfully, but these errors were encountered: