Martin

Results 14 issues of Martin

According to [the documentation of the `pedantic` option of marked](https://marked.js.org/#/USING_ADVANCED.md#options): > If true, conform to the original `markdown.pl` as much as possible. Don't fix original markdown bugs or behaviour. **Turns...

markdown

When I move the cursor to a position too close to the edge of the viewport, the viewport is moved to maintain the border I specified. The cursor is placed...

There is an off-by-one error in this if-statement: https://github.com/openlink/virtuoso-opensource/blob/4bdeace890721128d285417d67447d19024c00bc/libsrc/Wi/xslt.c#L3589-L3591 Substituting `size `for `inserts - deletions`, this statement reads: ```c if ((0 < ht->ht_dict_max_entries) && (size > ht->ht_dict_max_entries) ) goto skip_insertion;...

### Expected Behavior I expect no warnings. ### Actual Behavior ``` /python3.8/site-packages/pdoc/__init__.py:706: UserWarning: __pdoc__-overriden key 'module' does not exist in module 'mwe' warn('__pdoc__-overriden key {!r} does not exist ' ```...

bug

### Expected Behavior I am looking for some configuration switch to tell Python Markdown which extensions to use, specifically something like [PyMdown Extensions](https://facelessuser.github.io/pymdown-extensions) to enable task-lists and strike-through. ### Actual...

enhancement

This is inconsistent with http://json.org/ https://github.com/json4s/json4s/blob/67b835a52bb9cc0f50b65f2bcc9eb7ab5132e46c/native/src/main/scala/org/json4s/native/JsonParser.scala#L313 Related to #330

bug

Because `CoNLLDocument.document_table` is a (mutable) list of lists, [line 531](https://github.com/smartschat/cort/blob/c637594b57ab9f556a236bd94fb2b6c75ac4e550/cort/core/documents.py#L531) also changes the original table, because it is not copied in the following line: https://github.com/smartschat/cort/blob/c637594b57ab9f556a236bd94fb2b6c75ac4e550/cort/core/documents.py#L528

It would be nice to be able to disable the save permissions step, as it takes quite long and does not back up anything useful when the data to be...

Feature
Low

When serialising the following query, the surrounding `(` `)` are forgotten, causing a syntactically invalid query to be generated: ```rq ASK WHERE { ?s ^(^) ?o. } ``` becomes: ```rq...