Skip to content

Commit e2e359d

Browse files
Copy
1 parent 2a1ceea commit e2e359d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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)