aboutsummaryrefslogtreecommitdiff
path: root/src/gpt_chat_cli/chat_colorizer.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpt_chat_cli/chat_colorizer.py')
-rw-r--r--src/gpt_chat_cli/chat_colorizer.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/gpt_chat_cli/chat_colorizer.py b/src/gpt_chat_cli/chat_colorizer.py
index 168a5b8..3eb7bec 100644
--- a/src/gpt_chat_cli/chat_colorizer.py
+++ b/src/gpt_chat_cli/chat_colorizer.py
@@ -216,52 +216,3 @@ class ChatColorizer( object ):
def finish( self : "ChatColorizer" ):
self.lexer.finish()
-
-
-# content = '''
-# Rust code:
-
-# ```rust
-# fn main() {
-# let x = 5;
-# let y = 10;
-# let z = x + y;
-# println!("The value of z is {}", z);
-# }
-# ```
-
-# Python code:
-
-# ```python
-# x = 5
-# y = 10
-# z = x + y
-# print("The value of z is", z)
-# ```
-
-# Unknown code:
-
-# ```
-# x = 5
-# y = 10
-# z = x + y
-# print("The value of z is", z)
-# ```
-
-
-# Testing
-
-# ```python
-# x = 5
-# y = 10
-# z = x + y
-# print("The value of z is", z)
-
-# '''
-
-# highlighter = ChatColorizer()
-
-# highlighter.add_chunk(content)
-# highlighter.finish()
-
-# highlighter.print()