Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not showing properly, HTML elements being displayed in preview #94

Open
Nanorithm opened this issue Nov 20, 2019 · 0 comments
Open

Not showing properly, HTML elements being displayed in preview #94

Nanorithm opened this issue Nov 20, 2019 · 0 comments

Comments

@Nanorithm
Copy link

image

As you can see above, the preview is showing the HTML elements of the markdown conversion. For reference, this is my MD format:

# Counting
ls | wc -l                                                                              # Count files in a directory (including directories)
find -type f | sed -e 's/.*\.//' | sort | uniq -c                                       # Count files in directory per each type of extension
ls | grep '\.jpg$' | wc -l                                                              # Count all files in a directory with one particular extension

# Listing
ls | grep '\.jpg$'                                                                      # List all files with a particular extension
find -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'              # Find all files in a directory with a specific size value (50000k or larger)
du --max-depth=1 | sort -n | awk 'BEGIN {OFMT = "%.0f"} {print $1/1024,"MB", $2}'       # List all folders in a directory sorted by MB

# Compare
diff <(cd folder1 && find . | sort) <(cd folder2 && find . | sort)                      # Compare the contents fo two folders

# Bulk Jobs
rename 's/\.htm$/\.html/' *.htm                                                         # Bulk rename all files in a folder (from .htm to .html)
rename -n 's/\.htm$/\.html/' *.htm                                                      # Test run, doesn't actually change but shows proposed changes

# Backup 
`sudo -u advadmin cp -p filename newfilename.txt.YYYYMMDD`                              # Create a file backup

# Search
grep -rl "looking_for*" /path/                                                          # Search all files in directory for "string*" and list the files

When I build the MD into an HTML file it displays properly, it's just live view that doesn't work.

Using MarkdownEditing plugin, Macbook Pro 2019 MacOS Mojave, Sublime 3.2.2 build 3211.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant