We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57a488 commit cf40e24Copy full SHA for cf40e24
1 file changed
migrate/update-migrate-progress.ts
@@ -47,7 +47,7 @@ function generateUrls(
47
function generateMarkdown(status: EntryStatus): string {
48
const { entry, migrated, cpprefUrl, cppdocUrl, issueUrl } = status;
49
if (migrated) {
50
- return `| ✅ | [cppref](${cpprefUrl}) | [cppdoc](${cppdocUrl}) | \`${entry}\` | `;
+ return `| ✅ | [cppref](${cpprefUrl}) | [cppdoc](${cppdocUrl}) | \`${entry.cppdoc ?? entry.cppref + "(cppref)"}\` | `;
51
} else {
52
return `| ❌ | [cppref](${cpprefUrl}) | ${
53
entry.cppdoc ? `[create](${issueUrl})` : "N/A"
0 commit comments