- Api - How To Render GitHub Flavored Markdown Offline ...
- What's New Change Log
- Markdown In Github Pages
If you frequently use GitHub, then you know any directory with a Readme markdown file in it automagically displays it, making it a convenient place to let visitors know helpful information about a project... about setting it up, how to contact the author, where to turn for help, etc.
Working on some markdown documentation and find that it auto links the following text: A dirty trick to disable the auto link is: If your text contains the protocol prefix, you need to add the. Make them all ordered lists 1. Do something else. If the reverse-Pi separation gauge is set to `OFF` you can follow the following procedure. Use the flux capacitor on Mondays. Markdown is a pretty easy language to understand and learn. Many websites such as reddit use it in a professional way. Discord already. See full list on github.com.
But there are some little tricks you can take advantage of too, which most people wouldn't know about. Here's my top 5 (see them in action on GitHub too). One more thing before we dig in... these tricks work in any markdown file, including new Issues, Pull Requests, and in the Wiki.
Create Reusable Links
The normal way to create a link using markdown is this:
But what if you have a long Readme file or wiki page, and the same link is used in multiple places?
To make updates easier (not to mention, keeping things DRY), you can create a list of links at the bottom of the file, and reference them in multiple places by name. The list won't render on the page, so visitors won't even know it's there, and it makes one convenient place to do updates.
You can use the same technique with images too!
Add Hidden Comments
If you want to add a comment to your markdown file on GitHub - something to note but that shouldn't render when the page is viewed - here's a little hack that takes advantage of the same 'link' syntax used in the previous example. (The double-slash is the link id, the hash is the URL, and the comment in parenthesis is the link title.)
You can add these to anything that accepts a link label, wherever you find them useful - maybe in a Pull Request template to give contributors instructions that won't render when the PR is submitted, or near a confusing part of a wiki page so the next person who tries to edit it sees a brief explanation before submitting their change.
Quickly Insert Images
Although the Wiki has a button that lets you upload images to it, and the Issues page lets you drag and drop images, the interface in the main repo has no such button. You can (ab)use the Issues page though, to avoid the pain of having to upload images into your repo... which keeps the size of your repo down too.
Just create a new issue and drag your image into the editor pane. It'll upload it and generate a unique URL for you. Don't even bother saving the issue... just copy the markdown it generates and drop it into your Readme.
The only caveat is that it's not under source control, but I can't really see that being an issue. I've never had a need to keep revisions of images, but if you do then this may not be the tip for you.
Resize Images
But what if you get your image inserted and it's obnoxiously huge? You can't resize an image using markdown.

Well, GitHub doesn't support all HTML tags - for example the style
tag - but it does support a subset. You can check out their filter for yourself, but here's the list of tags they support:
The img
tag is in the list, so just switch to standard HTML to resize it. It even supports other attributes, allowing things like word wrapping.
Add Some Color to Your Life
You can't color your text using markdown, but you can use an image placeholder service like placeholder.com to create some useful effects that make sections of your Readme file, etc stand out.
The above markdown is rendered like this:
Api - How To Render GitHub Flavored Markdown Offline ...
What else?
What's New Change Log
I was hoping to find some trick for generating a table of contents, but alas after years of ongoing discussion... nada. There are other solutions like github-markdown-toc and the Github Markdown Outline chrome extension, but nothing native. Who knows though... maybe since Microsoft bought GitHub and is actively adding features, we'll see more features built-in.
Markdown In Github Pages
If you find any cool tricks of your own, I'd love to know about them! Share below...
