|
@@ -28,7 +28,9 @@ class SummaryView extends BasePage<SummaryController> {
|
|
|
EdgeInsets.only(left: 12.w, right: 12.w, top: 16.h, bottom: 20.h),
|
|
EdgeInsets.only(left: 12.w, right: 12.w, top: 16.h, bottom: 20.h),
|
|
|
child: Obx(() {
|
|
child: Obx(() {
|
|
|
return HtmlWidget(
|
|
return HtmlWidget(
|
|
|
- md.markdownToHtml(controller.summaryBean.value?.summary ?? ""),
|
|
|
|
|
|
|
+ md.markdownToHtml(controller.summaryBean.value?.summary.value ?? "",
|
|
|
|
|
+ inlineSyntaxes: md.ExtensionSet.gitHubWeb.inlineSyntaxes,
|
|
|
|
|
+ blockSyntaxes: md.ExtensionSet.gitHubWeb.blockSyntaxes),
|
|
|
textStyle:
|
|
textStyle:
|
|
|
TextStyle(fontSize: 14.sp, color: ColorName.primaryTextColor),
|
|
TextStyle(fontSize: 14.sp, color: ColorName.primaryTextColor),
|
|
|
);
|
|
);
|