Any better way to create MediaWiki numbered lists?
Like this: #Item1 #:Somestuff #Item2
Like this: #Item1 #:Somestuff #Item2
Try: <details> <summary>Your header here! (Click to expand)</summary> Your content here… > markup like blockquote’s should even work on github! more content here… </details> You can try this sort of thing here: <details> <summary>Your header here! (Click to expand)</summary> Your content here…</br> (markup only where supported)</br> more content here…</br> </details> This works for me with … Read more
Just to answer it shortly: You can’t. You have to upload your images somewhere else (like in a repository or on an image hoster) and link it But I agree with @jstephenson
I’d suggest jingo thanks to its nice design (with very sane typography), use of git as backing datastore, format compatibility with the markdown format used by github (gollum), and the fact that it’s somewhat actively developed. As of Jan 2017, Matterwiki is also actively developed. Wiki.js is also being actively developed. It’s using a git … Read more
But… the Github wiki of a GitHub repo is a git repo in itself (introduced in August 2010). You can clone it, push to it or pull from it. Each wiki is a Git repository, so you’re able to push and pull them like anything else. Each wiki respects the same permissions as the source … Read more
You could try the following wiki syntax, it works for me on 1.17 # one #:<pre> #::some stuff #::some more stuff</pre> # two It is not perfect, because you end up with a more indent but it does allow one to use the wiki syntax for correctly formatted pre blocks over multiple lines. As previously … Read more
For viewers wishing to view images on a github wiki I’ve found the following method to work: Go to the “Git Access” tab inside the wiki page of your repository and retrieve the SSH path which should be some thing like: git@github.com:USER/REPO.wiki.git where USER is your account name and REPO is the repository name. On … Read more
While your solution works, there’s an easier way to do it using GitHub’s web interface. You can simply create a page named _Sidebar and/or _Footer. See detailed instructions in Github Wiki sidebar menu builder with multi-level. Edit The original article is gone and I can’t find it in the cache so I’ve updated the link.
I was having the exact same issue and tried variants of what you tried. Nothing stuck. Asked GitHub support about it and received a reply that essentially said “No, but we’ll let the developers know that people are interested in this feature.” So the short answer is “No”, and the long answer is “No, but … Read more
GitHub doesn’t support pull requests for the wiki repository, only the main repository (this is a bit of a shame, IMO, but I can understand it). Here’s an interesting way one project manages community updates to their wiki, while still keeping tight control, as for source code: My proposed workflow is this: Manually create a … Read more