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
Example:
import { D2 } from '@terrastruct/d2'; const d2 = new D2(); const result = await d2.compile('あいうえお -> ♒️'); const svg = await d2.render(result.diagram, result.options);
Text tags in d2js output:
<text ...>�����</text> <text ...>��</text>
Correct output from d2 executable:
<text ...>あいうえお</text> <text ...>♒️</text>
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Example:
Text tags in d2js output:
Correct output from d2 executable:
The text was updated successfully, but these errors were encountered: