How to prevent/disable automatic list number incrementing in markdown?
Experimenting revealed I can prevent this behavior by escaping the period: 1\.first 2\.second 2\.second 3\.third
Experimenting revealed I can prevent this behavior by escaping the period: 1\.first 2\.second 2\.second 3\.third
There is simply not a “Import issues from JIRA” feature in GitHub. The way I see it you have two options, either to integrate your current JIRA instance with GitHub or migrate the JIRA issues into GitHub issues using your own criteria and migration script. GitHub and JIRA Integration I would very much like to … Read more
No one has clearly mentioned this, but the github raw urls expire in 7 days. You can use longer lasting personal access tokens generated here: https://github.com/settings/tokens but those can only be used via curl: curl -H ‘Authorization: token <personal_token>’ <raw_url> Note that the personal access tokens expire if unused for an entire year.
Note that the problem with the #Lxx-Lyy is that (from this post): source files are subject to change, or even be removed, so there’s no guarantee that your link will always point to the correct place. By default, GitHub project pages link to the most current version of the source. A better practice is to … Read more
Medium have said in their Twitter support feed that it’s an issue that only affects the editor but it should look fine when published: Hi Ayush! This is a known issue that only affects the editor. The gists will be displayed properly once the post is published. Sorry for the trouble!
The official commit comparison API is Compare two commits: GET /repos/:owner/:repo/compare/:base…:head Both :base and :head can be either branch names in :repo or branch names in other repositories in the same network as :repo. For the latter case, use the format user:branch: GET /repos/:owner/:repo/compare/user1:branchname…user2:branchname Note that you can use tags or commit SHAs as well. … Read more