9,064 questions
0
votes
0
answers
13
views
Obsidian plugin programming : MarkdownRenderChild View’s dynamic styling
In a plugin’s custom developed view which extends MarkdownRenderChild, how do I change root container (block code area)’s height dynamically after first rendering in preview mode?
The below code works ...
2
votes
0
answers
44
views
Markdown Syntax Highlighting Not Working in Production with Laravel
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 ...
0
votes
0
answers
31
views
Is there an analog of the markdownlint library for the java language? [closed]
I came across the need to check markdown text for compliance with good style in java. I know that there are similar tools for javascript, for example https://github.com/DavidAnson/markdownlint. ...
-1
votes
0
answers
43
views
how to convert Markdown lists to HTML in JavaScript [closed]
i really have no idea how to convert Markdown list to HTML and i need to do it not using any js package
i already implemented most of tags but im having really hard time with lists i manage to get ...
0
votes
0
answers
41
views
MdXaml doesn't render images from html code
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=&...
1
vote
0
answers
29
views
How to export markdown to PDF exactly as it appears on the preview?
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 ...
-1
votes
2
answers
64
views
Annoying underlines in .md file using <a> tag [closed]
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 -->
> 🚀 ...
-1
votes
1
answer
37
views
How can I remove pandoc EPUB links in markdown conversion?
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, ...
-2
votes
2
answers
67
views
R: how to convert markdown to html in a vector which is NOT a file
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 ...
0
votes
0
answers
27
views
Can nested code chunks be used when running code interactively in RStudio?
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 ...
-1
votes
0
answers
18
views
How to render tables in pandoc?
I'm new to pandoc and markdown. I have a markdown document with some tables like that:
Comando
Descripción
groupadd
Crea un nuevo grupo (herramienta de bajo nivel).
addgroup
Crea un nuevo grupo de ...
0
votes
0
answers
36
views
parse marked customize for list
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 ...
1
vote
0
answers
20
views
Add a BlockQuote at the beginning of a Para block when converting MD to HTML with Pandoc
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 ...
1
vote
1
answer
26
views
Github markdown: what does the number in the curly brackets mean?
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 = ...
0
votes
0
answers
15
views
How to remove markdown files from treeview in Doxygen 1.9.1
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 ...