Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
gpt_markdown
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
SUY
2024-02-21 11:33:49 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e9662824fbd6288e54c3a62476eb76857f658514
e9662824
1 parent
3deffc8f
Add MarkdownHelper class for formatting text
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
gpt_markdown/example/lib/main.dart
gpt_markdown/example/lib/main.dart
View file @
e966282
...
...
@@ -67,6 +67,21 @@ Welcome to ChatGPT! Below is an example of a response with Markdown and LaTeX co
### Markdown Example
```
class MarkdownHelper {
Map<String, Widget> getTitleWidget(m.Node node) => title.getTitleWidget(node);
Widget getPWidget(m.Element node) => p.getPWidget(node);
Widget getPreWidget(m.Node node) => pre.getPreWidget(node);
}
```
You can use Markdown to format text easily. Here are some examples:
- **Bold Text**: **This text is bold**
...
...
Please
register
or
login
to post a comment