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
saminsohag
2024-12-16 21:48:43 +0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
aa389c5c98a59c1f3829627c88176eefb5fa04d1
aa389c5c
1 parent
c3dc6e61
Fixed the issue of indentation
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
gpt_markdown/CHANGELOG.md
gpt_markdown/example/pubspec.lock
gpt_markdown/lib/markdown_component.dart
gpt_markdown/pubspec.yaml
gpt_markdown/CHANGELOG.md
View file @
aa389c5
## 0.1.12
*
Fixed the indentation syntex of regex.
## 0.1.11
*
`GptMarkdownTheme` and `GptMarkdownThemeData`
classes added.
...
...
gpt_markdown/example/pubspec.lock
View file @
aa389c5
...
...
@@ -126,7 +126,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.1
1
"
version: "0.1.1
2
"
http:
dependency: transitive
description:
...
...
gpt_markdown/lib/markdown_component.dart
View file @
aa389c5
...
...
@@ -12,7 +12,7 @@ import 'md_widget.dart';
/// Markdown components
abstract
class
MarkdownComponent
{
static
List
<
MarkdownComponent
>
get
components
=>
[
static
List
<
MarkdownComponent
>
components
=
[
CodeBlockMd
(),
NewLines
(),
TableMd
(),
...
...
@@ -310,7 +310,7 @@ class RadioButtonMd extends BlockMd {
/// Indent
class
IndentMd
extends
BlockMd
{
@override
RegExp
get
exp
=>
RegExp
(
r"^(\ +)([^\n]+)$"
);
RegExp
get
exp
=>
RegExp
(
r"^(\
\ \ \
+)([^\n]+)$"
);
get
onLinkTab
=>
null
;
@override
...
...
gpt_markdown/pubspec.yaml
View file @
aa389c5
name
:
gpt_markdown
description
:
"
The
purpose
of
this
package
is
to
render
the
response
of
ChatGPT
into
a
Flutter
app."
version
:
0.1.1
1
version
:
0.1.1
2
homepage
:
https://github.com/saminsohag/flutter_packages/tree/main/gpt_markdown
environment
:
...
...
Please
register
or
login
to post a comment