546 questions
631
votes
11
answers
812k
views
How to highlight bash/shell commands in Markdown?
How can I highlight the Bash/shell commands in Markdown files?
For example, to highlight JavaScript, I write:
```js
function () { return "This code is highlighted as Javascript!"}
```
To ...
26
votes
3
answers
48k
views
Full-width Markdown tables
So far I've gotten as far formatting and centering text in Markdown tables, but I have found nothing in terms of controlling the table dimensions relative to the outside container (at least other than ...
45
votes
3
answers
103k
views
Color Change of One Element in a Mermaid Sequence Diagram?
I'm using Mermaid to create a sequence diagram in Markdown. I'd like to highlight some of the participants and to gray some of the arrows.
How can that be done?
170
votes
5
answers
222k
views
GitHub Markdown colspan
Is there a way to have colspan on GitHub Markdown?
I'm trying to create a table where one row takes up four columns.
| One | Two | Three | Four |
| ------------- |-------------| ...
Tooling
0
votes
3
replies
60
views
Recommendation of Dynamic Animated SVGs for GitHub Landing Repo Usage (Not common static SVGs)
Question
I am creating a GitHub profile landing repository (the special repository where a README is rendered automatically on the profile page).
Here are some examples of profile landing repositories ...
514
votes
9
answers
855k
views
Get underlined text with Markdown [closed]
How can I underline text in Markdown?
2
votes
2
answers
3k
views
Gitbook header add id and internal links
I am new to the programming community and new to Gitbook. I have searched gitbook doc but still having some syntax problems.
I have been trying to add internal links so that, on a long web page, I can ...
3
votes
0
answers
92
views
One line text highlighting in markdown for GitHub
I am trying to make my README.md for my assignment, and I want to make some color highlighting in markdown. Especially I want to make a color syntax in code blocks where they are in a list . I know if ...
88
votes
3
answers
79k
views
How to create a good-looking notification or warning box in Github Flavoured Markdown?
I am looking for something simple like triple backticks, but that still allows other markdown syntax inside.
This is not the case for triple backticks, since it is used for code blocks:
**NOTE:**
...
-1
votes
3
answers
3k
views
How can I use file share links in Markdown?
I tried both the regular link syntax for markdown as well as the HTML syntax:
Anchor:
<a href="file://someserver/wasd/Default.htm">Some Link to File Share</a>
Result: Some Link to File ...
6
votes
3
answers
9k
views
Hyperlinks of README.md not working in Gitlab
I am working on a project that is being collaborated in Gitlab and tried to write the documentation using Github flavored markdown language. I added hyperlinks in following fashion. I learned it from ...
12
votes
2
answers
2k
views
Is there a way to reference an issue including title on GitHub?
I know that I can reference an issue just by giving the issue number like this: #123. This way the title of the issues shows up on hovering the number. But I have a main issue, where I want to ...
477
votes
11
answers
330k
views
How can one display images side by side in a GitHub README.md? [closed]
I'm trying to show a comparison between two photos in my README.md, but currently they appear one on top of the other.
I want to display them side-by-side — for example, when showing “before” and “...
30
votes
2
answers
49k
views
Images in a table with GitHub markdown
I'm having some problems formatting a README on github.
This is the raw README:
| Italic | Block letters |
:-------------------------:|:-------------------------:
![](outputs/...
5
votes
4
answers
4k
views
LaTeX matrix not rendering correctly on Github Markdown [closed]
I am trying to represent a basic vector, the following code works in Visual Studio Code.
I am using the following line $\begin{bmatrix}X\\Y\end{bmatrix}$
All whitespace removed. It should look like ...