-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
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
[www/blog] Allow Markdown in <Pullquote citation>
#25240
Comments
Hey @mgienow! 🤗 🎉 To add to your great issue description, here's that I can see a couple of ways enabling this, but given my very shallow understanding of MDX, I can't help but think that the easiest probably would be to use I also wouldn't be surprised if I don't see the forest for the trees! 😅 Pinging the @gatsbyjs/website superfriends for help! Is there an (easy) way to apply Markdown/MDX magic to the /cc @gillkyle |
<Pullquote citation>
So turns out I didn't see that forest for those trees. 😅 🤦 🤷 @sidharthachatterjee to the rescue ❤️ — we can pass JSX to <Pullquote
citation={
<span>
Dennis Brotzky, Founding Partner,{" "}
<a href="https://www.narative.co/">Narative</a>
</span>
}
>
“Partnering with Gatsby has been a strong driver for growth. Our clients love
the performance benefits and our developers are happy to use tools they
already love.”
</Pullquote> Thank you Sid! 🤗 |
it can done the way like in:
but the JSX code should be in one line until
|
Hiya! This issue has gone quiet. Spooky quiet. 👻 We get a lot of issues, so we currently close issues after 30 days of inactivity. It’s been at least 20 days since the last update here. Thanks for being a part of the Gatsby community! 💪💜 |
<Pullquote>
“Partnering with Gatsby has been a strong driver for growth. Our clients love
the performance benefits and our developers are happy to use tools they
already love.”
<PullquoteCitation>
Dennis Brotzky, Founding Partner, [Narative](https://www.narative.co/)
<PullquoteCitation>
</Pullquote> maybe is this syntax possible? then inside the |
related:
|
Oh yes, thank you @muescha! 🙏 🤗 |
As workaround befoee 2.0 maybe we can run the markdown convent in the component itself with the unified remark? |
Hiya! This issue has gone quiet. Spooky quiet. 👻 We get a lot of issues, so we currently close issues after 30 days of inactivity. It’s been at least 20 days since the last update here. Thanks for being a part of the Gatsby community! 💪💜 |
not stale |
Since the blogposts were moved to Wordpress (including the individual components like Pullquote) we can close this issue. |
Hello! I would like to request a feature to go with the component.
The
<Pullquote>
component, which is allowed in MDX, supports setting an optionalcitation
like so:<Pullquote citation="Dennis Brotzky, Founding Partner, Narative">
.The feature I'm requesting is the ability to add links to the citation, e. g. if we want to link to the website of the person we attributed the quote to. In MDX this would be
Dennis Brotzky, Founding Partner, [Narative](https://www.narative.co/)
but putting in the markdown link does not work in the<Pullquote citation="">
context.Thanks!
The text was updated successfully, but these errors were encountered: