gollum-lib icon indicating copy to clipboard operation
gollum-lib copied to clipboard

A simple, Git-powered wiki with a sweet API.

Results 18 gollum-lib issues
Sort by recently updated
recently updated
newest added

Currently search terms are split by space, all "regex"-sequences are escaped by `Regexp.escape()` and then concatenated using `|` which prevents any complex searches: https://github.com/gollum/gollum-lib/blob/3f8955a7b99a38aa36f70cd813d28e4df1ab2f81/lib/gollum-lib/wiki.rb#L500-L501 Is there any particular reason to...

Looked at the breaking changes for `octicons` since v.12: ``` THIS IS A BREAKING CHANGE and will require re-linking all the file-directory icon references to file-directory-fill • Rename 16px select-single...

It turns out `commonmarker` by default removes HTML tags from markdown for safety. Since we already implement our own sanitization, this seems superfluous: indeed, other renders such as `kramdown` already...

I've been digging around in the source code, looking for a way to _append_ (or prepend) an additional filter to the default list. https://github.com/gollum/gollum-lib/blob/1058d366eedac51e520498cfce9513b05b97974a/lib/gollum-lib/wiki.rb#L149 But as far as I can...

I'm thinking about adding a callback to handle the `pages` here before the rendering https://github.com/gollum/gollum-lib/blob/4434d2377532123f9191fcc8f112524b1fd10535/lib/gollum-lib/macro/navigation.rb#L6 Cloud possibly solve part of #393

I thought I saw an opportunity for improving the performance of the code filter. Instead of calling `data.gsub!` for every `id` in `@map`, we can call `data.gsub!` only once, and...

At the moment, we are calling `sanitize(data)` in the filter chain (at least) twice: in the actual `Sanitize` filter, and inside the `Macro` filter, to counter an exploit discovered a...

In a project using gollum for documentation it came up that the search was not as helpful as it could be. One has to search for "relevant" results in the...

Hello there, I've tryed every kind of TOC that propose macros but I can't find any that is really useful. I'm wondering if i missed somethings after hours of searches....

The TreeTOC macro generates an indented file&folders list like a filemanager. It can be styled to obtain a nice TOC: ![sample styled tree](https://i.ibb.co/Y8qY9q9/sshot.png)