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-28 23:15:32 +0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c83a76b2837b170b3105e092246904d0d9845cd4
c83a76b2
1 parent
a2cf9d9a
multiline latex bug fix
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
CHANGELOG.md
example/pubspec.lock
lib/markdown_component.dart
pubspec.yaml
CHANGELOG.md
View file @
c83a76b
## 1.0.3
*
Multiline latex syntax bug fix.
## 1.0.2
*
Readme updated.
...
...
example/pubspec.lock
View file @
c83a76b
...
...
@@ -126,7 +126,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.
1
"
version: "1.0.
3
"
http:
dependency: transitive
description:
...
...
lib/markdown_component.dart
View file @
c83a76b
...
...
@@ -522,7 +522,7 @@ class ItalicMd extends InlineMd {
class
LatexMathMultiLine
extends
BlockMd
{
@override
String
get
expString
=>
(
r"\\\[(((?!\n\n).)*)\\\]|(\\begin.*?\\end{.*?})"
);
String
get
expString
=>
(
r"\\\[(((?!\n\n).)*
?
)\\\]|(\\begin.*?\\end{.*?})"
);
@override
RegExp
get
exp
=>
RegExp
(
expString
,
dotAll:
true
,
multiLine:
true
);
...
...
pubspec.yaml
View file @
c83a76b
name
:
gpt_markdown
description
:
"
Powerful
Markdown
&
LaTeX
Renderer
for
Flutter:
Rich
Text,
Math,
Tables,
Links,
and
Text
Selection.
Ideal
for
ChatGPT,
Gemini,
and
more."
version
:
1.0.
2
version
:
1.0.
3
homepage
:
https://github.com/Infinitix-LLC/gpt_markdown
environment
:
...
...
Please
register
or
login
to post a comment