{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 代码\n", "\n", "这个元素显示一个带有语法高亮的代码块。\n", "\n", "- `content`: 要显示的代码\n", "- `language`: 代码的语言(默认:`\"python\"`)" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from nicegui import ui\n", "\n", "ui.code('''\n", " from nicegui import ui\n", " \n", " ui.label('Code inception!')\n", " \n", " ui.run()\n", "''').classes('w-full')\n", "\n", "# ui.run()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "py311", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.7" } }, "nbformat": 4, "nbformat_minor": 2 }