--- title: "Supported QLE Codes" execute: echo: false --- ```{python} import pandas as pd from io import StringIO from IPython.display import display, HTML with open('supported_qle_codes.csv', 'r') as file: csv_data = file.read() # Read the CSV data pd.set_option('display.max_colwidth', None) df = pd.read_csv(StringIO(csv_data), sep=',', index_col=None, keep_default_na=False, header=0) # Display the DataFrame as a table display(HTML(df.to_html(index=False).replace("\\n","<br>"))) ```