Replies: 4 comments
-
I really like the idea of having a title to code blocks, but remember the core idea of markdown: It should be readable and make sense even in plain text form. Tags such as This would allow someone to set a "file name" for the code block in case it's useful. And not only that, but any title could fit there. Another way to fit a title would be to just drop the Although this format doesn't look bad either: |
Beta Was this translation helpful? Give feedback.
-
I would love to see this enhancement, as it would allow people to semantically group things together that belong to each other. ## hello.c
```c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
```
__hello.c:__
```c
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
``` |
Beta Was this translation helpful? Give feedback.
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
While it is understandable that there is a trade-off between feature creep and simplicity/ease of access; I would also be happy to see this feature. It may seem trivial but, folder structure and various architecture could make things complicated. Who owns and have access to what to achieve protected variations is one of the most strongest programming paradigms today. On the documentation level. I do not know how many times I wanted too see not just the code but where it stands as well. Many of the packages and documents are presenting them in their own interface. |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Product Feedback
Body
Show in docusaurus
Show in Github
This way of marking up the title in docusaurus is nice, and I suggest Github support it as well.
Beta Was this translation helpful? Give feedback.
All reactions