HTML comments within comments?

I think the key point is this: Note that comments are markup. http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.4 This is not valid markup: <div <span/> /> … so neither is the one you mention. Since all my sites are written in PHP I normally comment out code with PHP comments: <?/*?> <div>…</div> <p>…</p> <?*/?> Perhaps you can use a similar … Read more

Multiline comment in Elixir

Elixir does not have multiline comments. However, one very common use case for multiline comments is documenting modules and functions, for which you can use the module attributes @doc and @moduledoc together with heredocs. defmodule MyModule do @moduledoc “”” This module is great at X “”” @doc “”” Frobnicates the given string. “”” def frobnicate(s) … Read more

Issue warning for missing comma between list items bug

These are merely probable solutions since I’m not really apt with static-analysis. With tokenize: I recently fiddled around with tokenizing python code and I believe it has all the information needed to perform these kind of checks when sufficient logic is added. For your given list, the tokens generated with python -m tokenize list1.py are … Read more