Aleks-Daniel Jakimenko-Aleksejev
Aleks-Daniel Jakimenko-Aleksejev
See also #2 ``` perl6 say 「hello」; # OK say ‘hello’; # OK say ’hello’; # NOT OK say ’hello‘; # NOT OK say ‚hello’; # NOT OK say ‚hello‘;...
See https://github.com/rust-lang/rust/issues/77499 for an example of a similar issue. In `ws` this is the error message when you try to use DeflateHandler: ``` attempted to zero-initialize type `deflate::ffi::z_stream`, which is...
Looking at the documentation: ```python from model_utils import Choices class Article(models.Model): STATUS = Choices('draft', 'published') status = models.CharField(choices=STATUS, default=STATUS.draft, max_length=20) ``` Wouldn't it be better to have something like: ```python...
Actually, I am not sure about this one. But try this: - Create a document with many headings - Change height of your window slightly, so that some part of...
It is: ``` css pre { font-family: Inconsolata; … } ``` It should be: ``` css pre { font-family: Inconsolata, monospace; … } ```
For example:  http://contrastchecker.com/ says this for the screenshot above:  And I agree. It is hard to read.
Right now I am afraid to submit pull requests because I don't want to break something. Would be cool if there was a set of test cases, so that I...
`pre` elements are styled like this: ``` css pre { background-color: #f8f8f8; background-size: 8px 8px; background-image: linear-gradient(135deg, transparent 25%, rgba(0, 0, 0, 0.02) 25%, rgba(0, 0, 0, 0.02) 50%, transparent...
And maybe other things. See this list: https://github.com/fniessen/refcard-org-mode/blob/master/README.org#admonitions Example: ``` #+begin_note This is a useful note. #+end_note #+begin_warning Be careful! Check that you have... #+end_warning ```
A lot of users will probably just use the `style.css` file, so it would be nice if it included _at least_ the link to this repo.