9,030 questions
0
votes
0
answers
23
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
31
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 ...
Advice
0
votes
1
replies
75
views
Slack markdown paste prompt disappeared after “Don’t ask again” — how can I format pasted markdown now?
In Slack desktop, when I paste markdown, I used to get a prompt to apply formatting.
I clicked “Don’t ask again”, and now the prompt is gone.
How can I still format pasted markdown?
And is there a way ...
-3
votes
1
answer
43
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)
* [...
1
vote
1
answer
29
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
17
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?
2
votes
1
answer
81
views
Pandoc Converting MD To HTML: WCAG-Uncompliant Links In Code Blocks
I like to write documents in Markdown and use Pandoc to convert them to HTML, which I then post publicly. The accessibility checker I use complains a lot about my documents having links without URLs, ...
2
votes
0
answers
92
views
Astro won't run when there's "Local images must be imported" error and I can't find what's throwing the error
I am making a blog and am currently adding support for image thumbnails to my blog posts, but Astro keeps telling me "Local images must be imported". Now it won't load my site's thumbnail ...
-1
votes
1
answer
81
views
How do I fix the jupyter notebook search box error "TypeError: can't access property "length", child is undefined"?
Once in a while, I get "TypeError: can't access property "length", child is undefined" in the search box of Jupyter Notebook, so that searching does not work anymore:
Settings:
...
0
votes
1
answer
86
views
Extending of default styles for markdown to docx conversion using Pandoc
I'm trying to create a moderately complex template for converting multiple markdown files into a standalone Word (.docx) file.
So far, I have been able to default.openxml file with custom conditional ...
Tooling
0
votes
6
replies
67
views
What is the best way to display markdown files on HTML with no access to the internet
I am currently working on my project for the computer science coursework project in my country (Ireland), one of the requirements is to include a /report directory that serves index.html which would ...
0
votes
1
answer
89
views
Markdown escape
I tried to display original code: $\sim$ in my jupyter notebook.
I thought that $ can be eacaped in the beginning time, so I used \$\sim\$, it displayed ~ later.
Then I tried \\$\sim$, it displayed $\...
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 ...
Advice
0
votes
1
replies
49
views
How to externally link to a storybook section
I have a storybook and I wat tot send a link to a section in my story to someone.
Eksample:
# MyTitle
I tried to link to this using someting like this `https://my-storybook-url/?path=/docs#MyTitle`
...
Advice
0
votes
2
replies
78
views
How to obtain HTML DOM from markdown?
I have some markdown text.
I use MarkDig to parse the markdown text and obtain a markdown-document-object-model. (markdown-DOM.)
From that, I want to obtain an HTML-DOM.
As far as I can tell, the only ...