Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
50 views

I am using Marked.js for parsing Markdown. The original Markdown language does not support different ordered list styles, for instance, lettered ones, like HTML. I would like to introduce this ...
SCMS's user avatar
  • 61
1 vote
1 answer
111 views

I am working on an Angular app, where in some areas i use the ngx-markdown to format and display some text. Its been straight forward using the markdown tags like so: <markdown class="thread-...
vicgoyso's user avatar
  • 626
0 votes
1 answer
64 views

I'm trying to include a hyperlink in my TechDocs that uses a custom URI scheme (e.g., mycustomapp://) to launch a native application from a link. Here's the Markdown snippet I'm using: This tool is ...
Sbean's user avatar
  • 21
0 votes
0 answers
205 views

In VS Code, when I edit code block (Jinja2) in Markdown file, there is no syntax highlight: ```jinja2 {# comments #} {% set a=[1,2,3] %} ``` When I change file type to test.jinja2, it works fine but ...
fei yang's user avatar
0 votes
0 answers
40 views

Environment I have a mkdocs project to write my documentation using markdown. I'm using CLion to edit and write the markdown files (since CLion is also my main development tool and I wanted to avoid ...
skrat's user avatar
  • 748
1 vote
0 answers
54 views

Can anyone help with why this does not work? @startuml package TestPackage { folder "Test Folder" { [Item A] [Item B] } class TestClass } @enduml Naturally that ...
EaZy Studio's user avatar
1 vote
1 answer
78 views

Cannot remove the underline from the second level of a nested ul in Markdown. Code Markdown * list item (first ul first li) * list item (second ul first li) * list item (second ul second li) * ...
JLDN Admin's user avatar
0 votes
0 answers
19 views

While investigating a response to a previous SO question, I found a curious behavior when using htmltools::tagList() and DT::datatable() to display dynamic panels. Specifically, if I render this ...
langtang's user avatar
  • 25.3k
0 votes
0 answers
195 views

var totalTRH = 0; ctx.data.forEach(function(_data) { if (_data.data.length >= 1) { _data.data.forEach(function(value) { totalTRH += parseFloat(value[1]) || 0; }); } }); return ` ...
Ujal Kshetrimayum's user avatar
1 vote
1 answer
147 views

How can I create a PowerPoint presentation with quarto, with two plots side by side, and include descriptive text at the bottom of each slide (like the one shown in screenshot)? The issue I have is ...
Bachi Shashikadze's user avatar
2 votes
0 answers
132 views

I'm using a package for rendering Markdown content with syntax highlighting in my Laravel application, and it works fine locally, but on my production server, the code syntax highlighting is not being ...
Usama Ramzan's user avatar
0 votes
0 answers
70 views

I'm trying to display formatted with Html images from Markdown file in WPF, but without success. Markdown file Html code part: <img src="PrsTiefe1.PNG" alt="PrsTiefe1" width=&...
Witold Lisiecki's user avatar
1 vote
0 answers
57 views

I have a markdown file that uses some custom extensions for “call-out boxes” as well as some custom code rendering. The trouble is when I go to export it with pandoc it strips all of that and gives me ...
Dimitri_896's user avatar
-1 votes
2 answers
80 views

I'm getting some annoying underlines in my .md Github file. I tried resizing, removing whitespace and even editing the file and changing it to dark mode. <!-- Social media section --> > 🚀 ...
Joncarre's user avatar
  • 137
-1 votes
1 answer
120 views

I am using the following shell command to convert from EPUB to Markdown, pandoc "input.epub" -t gfm-raw_html -o output.md It's working well, except for the fact that EPUB links remain, ...
F. Zer's user avatar
  • 1,311
-2 votes
2 answers
128 views

I have a large R-dataframe with some columns that contain strings from a rich text in markdown format. I need to convert these from markdown to html, with R. I don't want to render it, I don't want ...
Rinke's user avatar
  • 81
0 votes
0 answers
66 views

I have Rmarkdown code (full code at the bottom) that works as expected when I click the Knit button in RStudio. However, if I try to run the code interactively by clicking the "Run all code ...
Josh's user avatar
  • 1,358
0 votes
0 answers
99 views

I've seen the docs https://marked.js.org/using_pro#renderer and it has no example for the list i want to customize more detail https://github.com/markedjs/marked/blob/master/src/Tokens.ts#L137 as the ...
zummon's user avatar
  • 996
1 vote
0 answers
31 views

I get the following error when I use a JavaScript Pandoc filter to add a BlockQuote: Error in $.blocks[1]: When parsing Text.Pandoc.Definition.Block expected an Object with a tag field where the ...
James Newton's user avatar
  • 7,152
1 vote
1 answer
41 views

What does the numbers in the curly brackets after the code type mean in (github) markdown? Couldn't find any docs about it ```js{6, 15} export default { setup() { const input = ...
Claudiu's user avatar
  • 4,184
0 votes
0 answers
41 views

I am using Doxygen 1.9.1 to generate documentation for a code base. It works great generally, except for the top level documentation. I've written the top level docs using markdown, and every file ...
lydiash's user avatar
  • 130
1 vote
0 answers
54 views

In my application I want to be able to write markdown code in plain-text and switch between the code view and a rendered view. The rendered view may be read-only except that I want to be able to click ...
Cryptkeeper's user avatar
0 votes
0 answers
86 views

I have Markdown I use for an MkDocs site. I use a Markdown extension called Admonitions, which is formatted like this: !!! note This is my note The content of the admonition must be indented by ...
jeremywat's user avatar
  • 1,126
0 votes
1 answer
299 views

I am using Gemma 3 27B Instruct 8bit from MLX community on LM Studio but I notice it outputs HTML tags, for example "< sup>" and "< /sup>" instead of markdown format. I ...
languageoftheuniverse's user avatar
0 votes
1 answer
182 views

I'm working on a Tkinter application where I display text in a Text widget. The incoming text sometimes contains markdown-style links in the following format: [CNN Travel](https://www.cnn.com/travel/...
user29255210's user avatar
1 vote
0 answers
42 views

If I get a mathematical answer from Google Gemini, I can choose copy, then paste it into Emacs. At this point it's presumably markdown, so I save it as somemath.md. When I look at it, it has all the ...
147pm's user avatar
  • 2,289
0 votes
0 answers
136 views

I'm trying to learn about rendering Markdown inside HTML, and using Markdown-it and Highlight.js I use that code: template.html <!DOCTYPE html> <html> <head> <meta ...
anewb33's user avatar
  • 121
0 votes
1 answer
37 views

When I increase the font size of a rendered Markdown document with to-do list in IntelliJ IDEA, the size of the checkmarks remains small in the Preview section. Is there a built-in way or a plugin ...
sanitizedUser's user avatar
0 votes
0 answers
58 views

I try to document my R package with a vignette and want to print dataframes paged. It works with --- title: "Helpfile" output: rmarkdown::html_document: df_print: paged --- ```{r ...
Kiek's user avatar
  • 25
0 votes
1 answer
44 views

In my Python application I need to render to HTML a Markdown document generated by third-party software. The document contains long lists that contain non-standard and incompatible formatting (...
Andrei Vukolov's user avatar
0 votes
1 answer
47 views

Is there a way to inject a class into the <code> tag produced by wagtail-markdown so that I can style my Markdown code blocks with Prism instead of Pygments, which is the default syntax ...
xnx's user avatar
  • 25.7k
0 votes
1 answer
37 views

I am using pandoc to convert markdown files containing TeX bits to html. Because the text is in Italian, I want to use comma as a decimal separator. However, pandoc keeps adding a space after the ...
Massimo2013's user avatar
0 votes
0 answers
86 views

Here is a piece of my code: a = "Hello!" print(a) # This works because 'a' is a variable†. I need to put a footnote at the end of the second line, but the monospace font prevents asterisks ...
required_banana's user avatar
0 votes
2 answers
231 views

I am using the great_tables python library from Posit and am trying to format some long text for a particular column in a html table derived from a pandas DataFrame inside a Jupyter Notebook . The ...
harijay's user avatar
  • 11.9k
0 votes
0 answers
20 views

I want to add an extension to VuePress to be able to make left indents for text. For this, I created a project pnpm create vuepress-theme-hope my-docs Added a plugin @vuepress/plugin-register-...
DmitryB's user avatar
  • 545
1 vote
0 answers
55 views

I'm using Pandoc to convert a Latex project to Markdown (to display it via Dokusaurus). I would like to define certain sections inside the Latex text that are ignored when compiled as a Pdf, but are ...
M.X's user avatar
  • 856
0 votes
1 answer
135 views

I am trying to create a table and knit to PDF with an rmarkdown file: --- title: "Untitled" author: "L" date: "2025-03-13" output: pdf_document --- ```{r} set.seed(84) ...
Luigi's user avatar
  • 492
0 votes
0 answers
33 views

As a bit of a code neat-freak, I find myself formatting my README.mds and other various markdown files too much. Often this results in me spending time reformatting an entire paragraph in order to ...
BreakfastScience's user avatar
0 votes
0 answers
52 views

I am converting my Jupyter Notebooks to PDF using nbconvert, which generally works well. However, I would like to highlight certain content, especially Markdown callouts like: > Callout Block Is ...
user25399540's user avatar
0 votes
0 answers
40 views

If possible, I'd love to be able to do use a ref-style link but still add on the hashtag/section to the end. e.g. something like this: Container files are stored in [~/.config/containers/systemd/][...
dylanmorroll's user avatar
0 votes
1 answer
138 views

I have a MWE (see below, adapted from the Quarto doc), and I am wondering: Why the label fig-test is not found Is it possible to automatise the caption with a 'for loop' in the yaml? I found a ...
mistral's user avatar
  • 148
1 vote
0 answers
248 views

@nuxtjs/mdc SyntaxError Okay, so I visited the official documentation at this link. https://nuxt.com/modules/mdc and wanted to add the MDC renderer to try using it for Markdown. I installed it using ...
Peter Plevko's user avatar
0 votes
1 answer
84 views

I'd like to append HTML attributes to paragraphs in the same way I can do it for headings, links, images, etc., like so: # My nice heading {.some-class} ![an image](image.jpg){.some-class} [a link](...
Joshua Muheim's user avatar
2 votes
0 answers
96 views

I have a markdown file with multiple PlantUML diagrams embedded. I need to reuse some colours which I dont want to have to redefine in every block: @startuml colordefs !$BLOCK_COLOR = "#FF7500AC&...
lrdewaal's user avatar
  • 359
0 votes
0 answers
94 views

The context is that I'm streaming LLM tokens from a model, and they're in Markdown, so I want to repeatedly append to the rendered Markdown. This is roughly the code I'm using with bare text: async ...
Mark McDonald's user avatar
0 votes
2 answers
66 views

When I work with markdown files, this panel pops up when selecting. Is there any way to disable it? It really gets in the way and distracts, for example, I just want to copy some text. I have already ...
Lukas Pierce's user avatar
  • 1,386
1 vote
1 answer
49 views

I'm converting docx to Markdown using Pandoc. Some links are converted to Markdown autolinks. I would like switch off the autolinks generation in Pandoc, but did not find a way to do that. Background: ...
BetaRide's user avatar
  • 16.9k
1 vote
1 answer
577 views

I'm running markdownlint against some Markdown files and the rules configurations I have don't seem to be getting applied. Here's my config file: .markdownlint.yml default: true ignore_front_matter: ...
jeremywat's user avatar
  • 1,126
0 votes
0 answers
22 views

When writing python code blocks in a markdown file, the anaconda linting shows up for the whole document. Which results in a lot of white rectangles around markdown text. Is anyone aware of a way to ...
ygorg's user avatar
  • 770
1 vote
1 answer
57 views

I'd like to do something like this in my Blade pages: <div class="accordion-content"> @mdsnippet('snippets/common/some-content-for-multiple-pages.md') </div> and then ...
Sam's user avatar
  • 13