Made an application for supporting sustainable local businesses in San Pancho.
Never really got completed, but it has some useful Svelte components for maps that we can reuse.
http://greenspots.dctrl.space
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
229 B
10 lines
229 B
2 years ago
|
from typing import Any
|
||
|
from typing import Optional
|
||
|
|
||
|
from . import Markup
|
||
|
|
||
|
def escape(s: Any) -> Markup: ...
|
||
|
def escape_silent(s: Optional[Any]) -> Markup: ...
|
||
|
def soft_str(s: Any) -> str: ...
|
||
|
def soft_unicode(s: Any) -> str: ...
|