Skip to content

Commit dcf6b4d

Browse files
Copy
1 parent 0866b72 commit dcf6b4d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The built documentation will be available in the `aider/website/_site` directory
153153

154154
## Suggesting UI/UX Style Changes
155155

156-
We welcome suggestions for improving the default look and feel of the user input and other terminal interface elements. Aider utilizes `prompt_toolkit` which in turn often uses `Pygments` tokens for styling various text components.
156+
Aider utilizes `prompt_toolkit` which in turn often uses `Pygments` tokens for styling various text components.
157157

158158
If you have ideas for different colors, text styles (like bold, underline, italics), or other visual enhancements, you can help by:
159159

@@ -191,7 +191,9 @@ def main():
191191
from pygments.lexers.markup import MarkdownLexer
192192
tokens = list(pygments.lex("""# some title
193193
* something
194-
* else""", lexer=MarkdownLexer()))
194+
* else
195+
196+
some `code`""", lexer=MarkdownLexer()))
195197
print("Tokens found:")
196198
print(tokens)
197199

0 commit comments

Comments
 (0)