Optimizing images
@@ -60,15 +60,4 @@
|
|||||||
<DependentUpon>Example.resx</DependentUpon>
|
<DependentUpon>Example.resx</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\content\notes\coop\image\notes\map-lostprovince\Map_LostProvince.png" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\image\notes\coop-holdout\CoopBaseLarge.png" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\image\notes\coop-holdout\DefendPoints.png" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\image\notes\coop-holdout\EnemySpawns.png" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\image\notes\coop-holdout\Multipliers.png" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\image\notes\coop-holdout\OpenBases.png" />
|
|
||||||
<_ContentIncludedByDefault Remove="wwwroot\image\notes\coop-holdout\Pyre.png" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -70,8 +70,6 @@
|
|||||||
{
|
{
|
||||||
searchService.Show();
|
searchService.Show();
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine(keyboardEventArgs.CtrlKey + " " + keyboardEventArgs.Key);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 666 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 660 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 2.8 MiB After Width: | Height: | Size: 9.9 KiB |
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 11 KiB |
@@ -38,10 +38,6 @@ public class NoteContentModel
|
|||||||
var regex = new Regex(@"^#* (.*)$", RegexOptions.Multiline);
|
var regex = new Regex(@"^#* (.*)$", RegexOptions.Multiline);
|
||||||
var listOfMatches = regex.Matches(LoadedContent);
|
var listOfMatches = regex.Matches(LoadedContent);
|
||||||
|
|
||||||
Console.WriteLine($"Name: {Name}");
|
|
||||||
|
|
||||||
Console.WriteLine($"Matches: {listOfMatches.Count}");
|
|
||||||
|
|
||||||
List<SearchPointModel> foundHeaders = new List<SearchPointModel>();
|
List<SearchPointModel> foundHeaders = new List<SearchPointModel>();
|
||||||
|
|
||||||
foreach (var capture in listOfMatches)
|
foreach (var capture in listOfMatches)
|
||||||
|
|||||||