1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00
This commit is contained in:
Yan Maniez 2018-08-05 21:09:29 +02:00
parent 2d75cb2c67
commit 955ec2eaba
3 changed files with 1 additions and 10 deletions

View file

@ -58,15 +58,8 @@ namespace AideDeJeuLib
Name = headingBlock.Inline.ToMarkdownString();
}
else
{
Header += headingBlock.ToMarkdownString();
}
}
else
{
Header += block.ToMarkdownString();
}
Header += block.ToMarkdownString();
enumerator.MoveNext();
}
}

View file

@ -17,7 +17,6 @@
</ContentPage.ToolbarItems>
<ScrollView Orientation="Vertical" BackgroundColor="#fdf1dc">
<mdview:MarkdownView
x:Name="mdMarkdown"
Theme="{StaticResource MonsterMarkdownTheme}"
Markdown="{Binding Item.Markdown}"
NavigateToLinkCommand="{Binding BindingContext.Main.Navigator.NavigateToLinkCommand, Source={x:Reference This}}"

View file

@ -20,7 +20,6 @@
<ListView BackgroundColor="{StaticResource bgtan}" x:Name="ItemsListView" ItemsSource="{Binding Items}" VerticalOptions="FillAndExpand" HasUnevenRows="true" CachingStrategy="RecycleElement" SelectedItem="{Binding SelectedItem}" ItemTapped="ItemsListView_ItemTapped">
<ListView.Header>
<mdview:MarkdownView
x:Name="mdMarkdown"
Theme="{StaticResource MonsterMarkdownTheme}"
Markdown="{Binding BindingContext.Items.Header, Source={x:Reference This}}"
NavigateToLinkCommand="{Binding BindingContext.Main.Navigation.NavigateToLinkCommand, Source={x:Reference This}}"