#Markdown

1 messages · Page 1 of 1 (latest)

median coral
#

Any chance of a markdown function?

var $string1
var $string2
var $string3
$string1 = markdown_text("# Some Title")
$string2 = markdown_text("- This is a bullet point")
$string3 = markdown_text("**This is Bold**")```
shadow oasis
fathom mica
# shadow oasis for screens? not really... very limited font

Yeah.. the fonts are really limited.. do we even have capital letters?
It almost looks like the font rendering was built from complete scratch 😇

would be interesting (yet terrifying from a dev perspective) to have the capacity for multiple fonts and have more diversity; however, the pixel count would get large.

I kind of really like the low-level pixel stuff, I think it's part of the appeal, so in a way, I think that the fonts being as limited as they are is an ok tradeoff.

loud horizon
#

You could always roll your own font renderer 😅

night holly
#

There's also the screen_copy solution by making an atlas on another screen and copying the letters lol

median coral
# shadow oasis for screens? not really... very limited font

The font can be manipulated though, such as re-drawing the text slightly offset on the x-plane can make your font look "bold" for example.

We could do this ourselves inside of xenon code with a preg_match function. But it would be far less load if this was something C++ handled itself instead of adding overhead through xenon code.

night holly
median coral
night holly
#

I already know that preg_match is much more powerful, but I am looking for its utility in the context of use with Archean/Xenoncode