You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although it looks fine in GitHub or some Markdown Editors, there will be a problem when I upload a README.md which has this form of <table></table> to Crowdin. Take an issue I recently encountered while testing andrii-bodnar/action-crowdin-contributors for example.
Origianally, I used v1.0.2 version of this GitHub Action to generate a Crowdin Contributors List. The generated HTML table is as follow:
However, an error showed up when I tried to upload this README.md to Crowdin:
Click to expand logs
D:\Test\test-crowdin-readme>crowdin upload --branch test
[OK] Fetching project info
[SKIPPED] Branch 'test' already exists in the project
[ERROR] File 'test\README.md'
[ERROR] Wrong parameters:
<key: storageId, code: fileInvalid, message: An unknown error occurred while importing the file.>
[ERROR] Current execution finished with errors
D:\Test\test-crowdin-readme>
After reporting to Crowdin Support Team, they fix this issue by upgrading this GitHub Action to v1.0.3, in which they add <tbody></tbody> into <table></table>. The newly generated table is as follow:
Therefore, I hope this GitHub Action, akhilmhdh/contributors-readme-action, can fix this issue as well. That is, I hope it can generate the following form of table:
Problem Description
I found that there's no
<tbody></tbody>
inside the<table></table>
generated by this GitHub Action.Although it looks fine in GitHub or some Markdown Editors, there will be a problem when I upload a
README.md
which has this form of<table></table>
to Crowdin. Take an issue I recently encountered while testing andrii-bodnar/action-crowdin-contributors for example.Origianally, I used
v1.0.2
version of this GitHub Action to generate a Crowdin Contributors List. The generated HTML table is as follow:Click to expand codes
However, an error showed up when I tried to upload this
README.md
to Crowdin:Click to expand logs
After reporting to Crowdin Support Team, they fix this issue by upgrading this GitHub Action to
v1.0.3
, in which they add<tbody></tbody>
into<table></table>
. The newly generated table is as follow:Click to expand codes
Therefore, I hope this GitHub Action, akhilmhdh/contributors-readme-action, can fix this issue as well. That is, I hope it can generate the following form of table:
Versions
akhilmhdh/contributors-readme-action@v2.3.6
The text was updated successfully, but these errors were encountered: