You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please provide the complete md file as an example?
This is an issue with how the conversion of the latex math syntax is handled.
An quick and easy fix for you might be to just disable the conversion using --ignore-latex-dollar-syntax.
However, the logic of how the conversion is handled definitely needs to be revised.
# C1 Linux Command-Line Tools
### What are Linux Shell Options?
1. Bash -> GNU Bourne Again shell
2. Dash -> Debian Almquist shell
3. KornShell
4. tcsh -> upgraded version of the C Shell
5. csh -> C shell
6. Z shell
### Show which shell the OS is using?
readlink /bin/sh
### Show current working shell?
- echo $SHELL
- or
- ps -p $$
### Show Bash Version?
echo $BASH_VERSION
### Display Kernel Version?
uname -r
### What are Options also called?
switches
### Name Some Metacharacters?
"* ?[]'"\$;&()|^<>"
### Show current working directory:
pwd
### Three ways to switch to home folder:
1. cd
2. cd ~
3. cd $HOME
---
Dollar Metacharacter gets converted to /[
Example:
The text was updated successfully, but these errors were encountered: