545 questions
0 votes
1 answer
73 views
Dropdown list in github docs. Is it Github Flavoured Markdown? Syntax?
I was reading the Github Actions docs and I see a dropdown list here. (It says 'Action type: created') From what I know, the docs are written using Github Flavoured Markdown. How was this specific ...
0 votes
1 answer
57 views
github markdown after clicking a same-page link, clicking images no longer works
For example on this .md page scrolling down to the first image and clicking it works fine (i.e. displays the image in a new window). But clicking any same page link, for example "Jump to Table of ...
2 votes
1 answer
112 views
Shields.io badge not displaying properly on GitHub README, only shows alt text
When I go to shields.io, to make a badge, it usually doesn't appear as the full button, and instead the alternative text. <img alt="Static Badge" src="https://img.shields.io/badge/...
1 vote
1 answer
320 views
IntelliJ crashes when navigating to a markdown file
I'm working in an environment where I'm forced to use the community version (IDEA 2024.1) and when I navigate to a Markdown file (*.md) (e.g., Readme.md) file, IntelliJ crashes. I was able to ...
2 votes
1 answer
65 views
GitHub Actions environment var not picked up
I implemented a code coverage badge that should be a dynamic one for https://github.com/CosmicDNA/ImportDotEnv/tree/development, where it is using a JSON file hosted at GH pages. Here is the badge ...
3 votes
0 answers
1k views
Correctly registering Mermaid icon sets in a markdown document
I have the following Mermaid architecture diagram: architecture-beta group internal(internet)[Intranet] group aws(logos:aws)[AWS Internal] in internal service s3(logos:aws-s3)[S3] in ...
1 vote
1 answer
96 views
Pip requirements syntax highlighting in GitHub markdown
According to GitHub syntax highlighting, keyword for pip requirements syntax highlighting can be found on languages.yml. According to the link, the keyword is Pip Requirements, but the following ...
0 votes
0 answers
57 views
How to only select regular list item and not task list item?
To select only listItem, I use: import {fromMarkdown} from 'mdast-util-from-markdown' import {inspect} from 'unist-util-inspect' import {selectAll} from 'unist-util-select' import {gfm} from '...
0 votes
1 answer
68 views
Easy to copy Python code snippets with doctest enabled
When adding doctests to my markdown, I have to write something like ```python >>>import numpy >>>np.sum([1, 2]) 3 ``` This works fine with doctest. However, when I render the markdown page on Github,...
2 votes
0 answers
513 views
Can a local image in a GitHub repository be displayed in a workflow's step summary using markdown?
The GitHub blog post for job Summaries mentions the ability to use markdown for a job's step summary. If you follow the documentation link in the post it states that... Job summaries support GitHub ...
1 vote
0 answers
61 views
How do you make an inline resized image in Github Markdown?
When you want to add an inline image you can use simple markdown:  And for resizing an image it supports html tags: <img src="src" alt="text" height="20"&...
0 votes
1 answer
208 views
How can I adjust the repository card's color to match the GitHub theme when switching between different themes?
This appears visually appealing in light mode but not in dark mode. I aim to ensure compatibility with both light and dark themes in my README.md file. Dark Theme Image Light Theme image ## 🍋🟩 ...
0 votes
1 answer
82 views
GitHub PR review suggestion including fenced code sections with triple backticks
On a PR review I was trying to add a suggestion to a markdown readme. The part of the document I'm commenting on contains fenced code sections with triple-backticks (```). However the beginning of the ...
1 vote
0 answers
71 views
Displaying interactive HTML knitted R-Markdown file within existing Jekyll site hosted on GitHub Pages
I have a personal website hosted on GitHub Pages using this Jekyll template, where I'd like to embed an R Markdown project I recently completed in RStudio within a post for the "Projects" ...
2 votes
1 answer
747 views
How to *disable* copy button in README.md code blocks on GitHub?
On a README.md that i'm currently authoring the copy button really gets in the way in the Editor Preview, often hiding parts of the code: And once committed, the copy button takes up extra space: ...