saminsohag

Fixed the issue of indentation

## 0.1.12
* Fixed the indentation syntex of regex.
## 0.1.11
* `GptMarkdownTheme` and `GptMarkdownThemeData` classes added.
... ...
... ... @@ -126,7 +126,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.11"
version: "0.1.12"
http:
dependency: transitive
description:
... ...
... ... @@ -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
... ...
name: gpt_markdown
description: "The purpose of this package is to render the response of ChatGPT into a Flutter app."
version: 0.1.11
version: 0.1.12
homepage: https://github.com/saminsohag/flutter_packages/tree/main/gpt_markdown
environment:
... ...