9,026 questions
Best practices
0
votes
2
replies
22
views
Comment/note for instructions inside .md markdown
If writing .md markdown instructions (e.g. Installation instruction steps),
what would be the best way to give a note, why specific step is needed, some give some references.
In other words,
if I ...
Tooling
0
votes
2
replies
77
views
How Claude can get access to GitLab/Github issues?
How Claude Code can get access to GitLab issues (main question) ?
I think the result should be those issues cashes locally as .md
So Claude can read.
Maybe there is something done for GitHub, soo
How ...
-5
votes
0
answers
113
views
How to get all issues of one specific project locally, preserving all Markdown formatting? [closed]
Can I "git clone" GitLab issues as Markdown? By that I mean getting every issue (of one specific project) as a separate Markdown file, locally, that is exactly the same Markdown that is seen ...
Advice
0
votes
3
replies
91
views
How do I save/copy sections of my R script into R markdown?
I have ran all of my code in an R script. Now to put it into certain sections in my R markdown file, I need to copy and paste certain sections of that code into for example, the results and summary ...
0
votes
2
answers
143
views
Markdown with Mermaid/PlantUML preview not working in Android Studio?
I have sample markdown as below:
## Markdown with Mermaid and Plant UML in IntelliJ IDEA and Android Studio
### Markdown with Mermaid
```mermaid
sequenceDiagram
Alice->>Bob: Hello John, how ...
Advice
1
vote
6
replies
90
views
best ways to clean .md file for AI fine tuning/Ai making?
so we have some project and the main problem is we have to clean .md files and it is time consuming if we do it by hand and we have managed to do automation more than 70% and still we have to do the ...
Best practices
0
votes
0
replies
40
views
Standard for Embedding Components Within LLM Response Markdown?
Is there a standard or recommended way to indicate within an LLM markdown response that specific sections should be rendered as application components (graphs, tables, etc) rather than as plain ...
Advice
0
votes
3
replies
115
views
Whats the difference between a SVG file and a md file?
I recently created a GitHub repository for my profile. In it, I used an SVG file to display some information about myself, and then I replicated the same information using a Markdown (MD) file.
What ...
Best practices
0
votes
1
replies
80
views
How to manipulate column widths in two-col slidev slide layout?
This is my example slide:
---
layout: two-cols
layoutClass: gap-8
---
```js
function exampleSnippet() {
// some code
}
```
::right::
I only want some commentary on the right. This column should ...
Best practices
2
votes
0
replies
164
views
.md architecture for cursor agent optimization for my next projects
I'm experimenting with a documentation architecture aimed at improving how AI coding agents (specifically Cursor agents) understand and navigate a project.
The goal is to reduce the amount of code the ...
5
votes
1
answer
140
views
Equations in EPUB created with Bookdown are not displayed on a Kindle ebook reader
I created an EPUB ebook in R with Bookdown. It contains in-text mathematical formulas such as $\pi$, $\hat\pi$ and $X$ as well as equations such as:
\begin{equation}
\hat\pi = \frac{e^{a + X\cdot b}}{...
0
votes
1
answer
57
views
remove a markdown section from auto-generated Table Of Contents
I want to remove the top-level section from an auto-generated table of contents. I'm using VS Code Extension Markdown All In One.
Given this example
# My Header
## First Section
hello
## Second ...
-3
votes
1
answer
66
views
How can I make a link from one .md file to another that will work both locally and in Bitbucket?
I have a componentReadmes.md file with a list of links to each of my component's README.MD files, eg:
* [Card](/abc/components/card/readme.md)
* [Image Block](/abc/components/image-block/readme.md)
* [...
2
votes
2
answers
41
views
Automatically wrapping a markdown table in div using Eleventy SSG
I installed Eleventy SSG to write blogs. In some of my MDs, I have tables.
I want smartphone users to be able to swipe tables horizontally.
for that I must wrap tables in div with class name table-...
Best practices
0
votes
1
replies
21
views
How to disable line numbers in Markdown unformatted text blocks
I have the following in my Markdown code:
```
abc
def
```
and it is rendered as
1 | abc
2 | def
How can I get rid of the preceding line numbers?