1
0
mirror of https://github.com/janet-lang/janet synced 2025-07-06 20:12:53 +00:00

Merge pull request #1597 from sogaiu/remove-more-underline-bits

Remove some underline bits from doc-format
This commit is contained in:
Calvin Rose 2025-05-21 21:39:16 -05:00 committed by GitHub
commit 27f01e2664
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3248,12 +3248,10 @@
# Terminal codes for emission/tokenization
(def delimiters
(if has-color
{:underline ["\e[4m" "\e[24m"]
:code ["\e[97m" "\e[39m"]
{:code ["\e[97m" "\e[39m"]
:italics ["\e[4m" "\e[24m"]
:bold ["\e[1m" "\e[22m"]}
{:underline ["_" "_"]
:code ["`" "`"]
{:code ["`" "`"]
:italics ["*" "*"]
:bold ["**" "**"]}))
(def modes @{})