And make it publicly editable
https://help.github.com/articles/changing-access-permissions-for-wikis/
Off-topic
xref-find-apropos in xref.el is not appealing because it splits the input pattern and quotes it. This may be appropriate for its elisp backend but bad for general language servers.
(defun xref-find-apropos (pattern)
"Find all meaningful symbols that match PATTERN.
The argument has the same meaning as in `apropos'."
(interactive (list (read-string
"Search for pattern (word list or regexp): "
nil 'xref--read-pattern-history)))
(require 'apropos)
(xref--find-xrefs pattern 'apropos
(apropos-parse-pattern
(if (string-equal (regexp-quote pattern) pattern)
;; Split into words
(or (split-string pattern "[ \t]+" t)
(user-error "No word list given"))
pattern))
nil))
What about using github pages instead of a wiki?
Wiki can be publicly editable so it is easier to collaborate.
Not even members can edit the wiki. I don't understand why this still doesn't happen.
@vibhavp - can you open the wiki for public edits so we can close this issue?
Wiki opened for edits.
Most helpful comment
Wiki can be publicly editable so it is easier to collaborate.