Open NobleMathews opened 3 months ago
To address the broken link issue in the coral/docs/documentation.md
file, follow these actionable steps:
coral/docs/documentation.md
by fixing the whitespace issue.Steps:
coral/docs/documentation.md
.![image](
or similar.Example Fix:
Before:
![image]( https://example.com/image.png)
After:
![image](https://example.com/image.png)
coral/src/domain/helper/documentation-helper.ts
.// Example of how to use the helper to verify the fix
import { createStringifiedHtml } from './coral/src/domain/helper/documentation-helper';
const markdownContent = `![image](https://example.com/image.png)`;
createStringifiedHtml(markdownContent).then((htmlContent) => {
console.log(htmlContent); // Verify the HTML output
});
core/src/main/resources/static/assets/plugins/text-angular/textAngular.min.js:292-303 | This snippet contains link handling logic that might be relevant for ensuring correct link syntax, similar to the markdown issue.
coral/src/app/components/PreviewBanner.tsx:1-57 | This snippet includes link components and attributes that could be useful for understanding and fixing link-related issues in the documentation.
💡 To rerun Mayil, comment mayil-ai rerun
. Mayil will incorporate any new context added to the ticket. Include details in your rerun comment to guide Mayil!
hashtag What happened? ![image](
hashtag What did you expect to happen? There's a whitespace which breaks the link.
hashtag What else do we need to know? I was setting this up with a remote api when I noticed this. This is an extremely trivial issue lol.
)