|
|
|
@ -4,12 +4,16 @@ using System.Collections.ObjectModel;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace File_Folder_Helper.Helpers;
|
|
|
|
|
|
|
|
|
|
internal static partial class HelperMarkdown
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[GeneratedRegex("(~~)?(#)([a-zA-Z0-9]{6})(~~)?( )")]
|
|
|
|
|
private static partial Regex HtmlColor();
|
|
|
|
|
|
|
|
|
|
private record Input(string Source,
|
|
|
|
|
string? StartAt,
|
|
|
|
|
string? Destination);
|
|
|
|
@ -21,6 +25,12 @@ internal static partial class HelperMarkdown
|
|
|
|
|
private record MarkdownFileAndLines(MarkdownFile MarkdownFile,
|
|
|
|
|
string[] Lines);
|
|
|
|
|
|
|
|
|
|
private record MarkdownExtra(ReadOnlyCollection<string>? Assignees,
|
|
|
|
|
ReadOnlyCollection<H2HexColor>? H2HexColorCollection,
|
|
|
|
|
ReadOnlyCollection<H2NoCheckboxes>? H2NoCheckboxesCollection,
|
|
|
|
|
ReadOnlyCollection<H2WithCheckboxes>? H2WithCheckboxesCollection,
|
|
|
|
|
string? RequestedDateTime);
|
|
|
|
|
|
|
|
|
|
private record MarkdownFileH1AndRelativePath(MarkdownFile? MarkdownFile, string[]? Lines, string? H1, string? RelativePath);
|
|
|
|
|
|
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
@ -29,6 +39,12 @@ internal static partial class HelperMarkdown
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
|
|
|
|
|
[JsonSerializable(typeof(ReadOnlyDictionary<string, List<MarkdownFile>>))]
|
|
|
|
|
internal partial class ColumnAndLinksSourceGenerationContext : JsonSerializerContext
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void SetRecursiveLines(AppSettings appSettings, ILogger<Worker> logger, ReadOnlyDictionary<string, List<MarkdownFileAndLines>> keyValuePairs, string linkTitle, MarkdownFile markdownFile, string[] lines, List<char> indentations, List<string> recursiveLines)
|
|
|
|
|
{
|
|
|
|
|
if (recursiveLines is null)
|
|
|
|
@ -200,7 +216,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
result = JsonSerializer.Serialize(keyValuePairs, DictionaryStringAndJsonElementSourceGenerationContext.Default.DictionaryStringJsonElement);
|
|
|
|
|
string[] parsedLines = result.Split(Environment.NewLine).ToArray();
|
|
|
|
|
results = GetFrontMatterLines(parsedLines);
|
|
|
|
|
if (!results.Any())
|
|
|
|
|
if (results.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
result = null;
|
|
|
|
|
keyValuePairs = null;
|
|
|
|
@ -249,7 +265,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
updatedLineNumber = i;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (h1LineNumber is null && line.Length > 2 && line[..2] == "# ")
|
|
|
|
|
if (h1LineNumber is null && line.Length > 2 && line[0] == '#' && line[1] == ' ')
|
|
|
|
|
{
|
|
|
|
|
h1LineNumber = i;
|
|
|
|
|
continue;
|
|
|
|
@ -358,7 +374,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (jsonLines.Any())
|
|
|
|
|
if (jsonLines.Count > 0)
|
|
|
|
|
(result, keyValuePairs, results) = Get(jsonLines);
|
|
|
|
|
else
|
|
|
|
|
(result, keyValuePairs, results) = (null, null, new());
|
|
|
|
@ -438,7 +454,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
MarkdownFile markdownFile;
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
|
markdownFile = relativeTo.Value.MarkdownFile;
|
|
|
|
@ -497,7 +513,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
(lines, lineNumber) = GetStatusAndFrontMatterYamlEndLineNumbers(fileInfo);
|
|
|
|
|
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fileInfo.FullName);
|
|
|
|
|
h1 = fileNameWithoutExtension.ToLower().Replace("%20", "-").Replace(' ', '-');
|
|
|
|
|
if (lines.Any())
|
|
|
|
|
if (lines.Count > 0)
|
|
|
|
|
(type, h1) = GetTypeAndH1(appSettings, h1, lines, lineNumber);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
@ -505,7 +521,21 @@ internal static partial class HelperMarkdown
|
|
|
|
|
File.WriteAllLines(file, new string[] { "---", $"type: \"{type}\"", "---", string.Empty, $"# {h1}" });
|
|
|
|
|
lines = File.ReadAllLines(file).ToList();
|
|
|
|
|
}
|
|
|
|
|
markdownFile = new(file, fileInfo.DirectoryName, fileInfo.Name, fileNameWithoutExtension, fileInfo.Extension, fileInfo.CreationTime, fileInfo.LastWriteTime, lineNumber, type, h1);
|
|
|
|
|
markdownFile = new(null,
|
|
|
|
|
fileInfo.CreationTime,
|
|
|
|
|
fileInfo.DirectoryName,
|
|
|
|
|
fileInfo.Extension,
|
|
|
|
|
file,
|
|
|
|
|
fileInfo.Name,
|
|
|
|
|
fileNameWithoutExtension,
|
|
|
|
|
h1,
|
|
|
|
|
null,
|
|
|
|
|
null,
|
|
|
|
|
null,
|
|
|
|
|
fileInfo.LastWriteTime,
|
|
|
|
|
lineNumber,
|
|
|
|
|
null,
|
|
|
|
|
type);
|
|
|
|
|
if (force || input.StartAt is null || file.StartsWith(input.StartAt))
|
|
|
|
|
results.Add(key, new(markdownFile, lines.ToArray()));
|
|
|
|
|
else
|
|
|
|
@ -613,7 +643,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
string[] frontMatterYamlLines;
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
results.Clear();
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
@ -621,7 +651,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
if (markdownFile.LineNumber.FrontMatterYamlEnd is null)
|
|
|
|
|
continue;
|
|
|
|
|
(_, _, frontMatterYamlLines) = Get(markdownFile.LineNumber.FrontMatterYamlEnd.Value, lines);
|
|
|
|
|
if (!frontMatterYamlLines.Any())
|
|
|
|
|
if (frontMatterYamlLines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
results.Add("---");
|
|
|
|
|
results.AddRange(frontMatterYamlLines);
|
|
|
|
@ -658,7 +688,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
MarkdownFile markdownFile;
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
circularReference = false;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
@ -719,7 +749,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
MarkdownFile markdownFile;
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
found = false;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
@ -771,7 +801,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
ReadOnlyDictionary<string, List<MarkdownFileAndLines>> keyValuePairs = GetKeyValuePairs(relativeToCollection);
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
write = false;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
@ -828,7 +858,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
ReadOnlyDictionary<string, List<MarkdownFileAndLines>> keyValuePairs = GetKeyValuePairs(relativeToCollection);
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
|
markdownFile = relativeTo.Value.MarkdownFile;
|
|
|
|
@ -922,7 +952,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
ReadOnlyDictionary<string, List<MarkdownFileAndLines>> keyValuePairs = GetKeyValuePairs(relativeToCollection);
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
if (input.StartAt is null || !relativeTo.Value.MarkdownFile.File.StartsWith(input.StartAt) || Path.GetFileName(relativeTo.Value.MarkdownFile.Directory) != Path.GetFileName(input.StartAt))
|
|
|
|
|
continue;
|
|
|
|
@ -964,7 +994,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
ReadOnlyDictionary<string, MarkdownFileAndLines> relativeToCollection = GetRelativeToCollection(appSettings, input);
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
|
markdownFile = relativeTo.Value.MarkdownFile;
|
|
|
|
@ -1028,7 +1058,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
|
|
|
|
|
private static (string type, string h1) GetTypeAndH1(AppSettings appSettings, string h1, List<string> lines, LineNumber lineNumber)
|
|
|
|
|
{
|
|
|
|
|
string type = lineNumber.Type is null ? appSettings.DefaultNoteType : lines[lineNumber.Type.Value].Replace("type: ", string.Empty);
|
|
|
|
|
string type = lineNumber.Type is null ? appSettings.DefaultNoteType : lines[lineNumber.Type.Value][5..].Trim().Trim('"');
|
|
|
|
|
string h1FromFile = lineNumber.H1 is null ? h1 : lines[lineNumber.H1.Value][2..];
|
|
|
|
|
return (type, h1FromFile);
|
|
|
|
|
}
|
|
|
|
@ -1048,7 +1078,7 @@ internal static partial class HelperMarkdown
|
|
|
|
|
string updatedLineCompare;
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (!relativeTo.Value.Lines.Any())
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
results.Clear();
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
@ -1161,6 +1191,8 @@ internal static partial class HelperMarkdown
|
|
|
|
|
List<MarkdownFileAndLines> markdownFileAndLinesCollection = GetRecursiveLines(appSettings, input, logger, relativeToCollection);
|
|
|
|
|
Write(input, markdownFileAndLinesCollection);
|
|
|
|
|
}
|
|
|
|
|
if (!string.IsNullOrEmpty(input.StartAt) && !string.IsNullOrEmpty(input.Destination))
|
|
|
|
|
Save(input, relativeToCollection);
|
|
|
|
|
string directory = Path.Combine(Environment.CurrentDirectory, ".vscode");
|
|
|
|
|
if (!Directory.Exists(directory))
|
|
|
|
|
{
|
|
|
|
@ -1175,13 +1207,173 @@ internal static partial class HelperMarkdown
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void Save(Input input, ReadOnlyDictionary<string, MarkdownFileAndLines> relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(input.StartAt) || string.IsNullOrEmpty(input.Destination))
|
|
|
|
|
throw new NotSupportedException();
|
|
|
|
|
ReadOnlyDictionary<string, List<MarkdownFile>> columnsToLinks = GetColumnsToLinks(input, relativeToCollection);
|
|
|
|
|
if (columnsToLinks.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
string json = JsonSerializer.Serialize(columnsToLinks, ColumnAndLinksSourceGenerationContext.Default.ReadOnlyDictionaryStringListMarkdownFile);
|
|
|
|
|
File.WriteAllText(Path.Combine(input.Destination, $"{nameof(columnsToLinks)}.json"), json);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static ReadOnlyDictionary<string, List<MarkdownFile>> GetColumnsToLinks(Input input, ReadOnlyDictionary<string, MarkdownFileAndLines> relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
Dictionary<string, List<MarkdownFile>> results = new();
|
|
|
|
|
string key;
|
|
|
|
|
string[] lines;
|
|
|
|
|
string[] segmentsA;
|
|
|
|
|
string? column = null;
|
|
|
|
|
MarkdownFile markdownFile;
|
|
|
|
|
MarkdownExtra markdownExtra;
|
|
|
|
|
List<MarkdownFile> links = new();
|
|
|
|
|
MarkdownFileAndLines? markdownFileAndLines;
|
|
|
|
|
foreach (KeyValuePair<string, MarkdownFileAndLines> relativeTo in relativeToCollection)
|
|
|
|
|
{
|
|
|
|
|
if (relativeTo.Value.Lines.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
lines = relativeTo.Value.Lines;
|
|
|
|
|
markdownFile = relativeTo.Value.MarkdownFile;
|
|
|
|
|
if (markdownFile.FileNameWithoutExtension != "index" && markdownFile.Directory.EndsWith(".kanbn"))
|
|
|
|
|
continue;
|
|
|
|
|
if (!File.Exists(markdownFile.File))
|
|
|
|
|
continue;
|
|
|
|
|
for (int i = 0; i < lines.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
if (lines[i].Length < 4 || lines[i][0] != '#' || lines[i][1] != '#' || lines[i][2] != ' ')
|
|
|
|
|
continue;
|
|
|
|
|
if (links.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
if (column is null)
|
|
|
|
|
throw new NullReferenceException(nameof(column));
|
|
|
|
|
results.Add(column, links);
|
|
|
|
|
links = new();
|
|
|
|
|
}
|
|
|
|
|
column = lines[i][3..].TrimEnd();
|
|
|
|
|
if (lines.Length == i + 1)
|
|
|
|
|
continue;
|
|
|
|
|
for (int j = i + 1; j < lines.Length; j++)
|
|
|
|
|
{
|
|
|
|
|
if (lines[j].Length < 5)
|
|
|
|
|
continue;
|
|
|
|
|
if (lines[j].Length >= 4 && lines[j][0] == '#' && lines[j][1] == '#' && lines[j][2] == ' ')
|
|
|
|
|
break;
|
|
|
|
|
segmentsA = lines[j].Split("](");
|
|
|
|
|
if (segmentsA.Length != 2 || segmentsA[1][^1] != ')')
|
|
|
|
|
continue;
|
|
|
|
|
key = Path.GetRelativePath(input.Source, Path.Combine(input.Source, segmentsA[1][..^1]));
|
|
|
|
|
if (!relativeToCollection.TryGetValue(key, out markdownFileAndLines))
|
|
|
|
|
continue;
|
|
|
|
|
markdownExtra = GetMarkdownExtra(markdownFileAndLines);
|
|
|
|
|
markdownFile = new(markdownExtra.Assignees,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.CreationDateTime,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.Directory,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.Extension,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.File,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.FileName,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.FileNameWithoutExtension,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.H1,
|
|
|
|
|
markdownExtra.H2HexColorCollection,
|
|
|
|
|
markdownExtra.H2NoCheckboxesCollection,
|
|
|
|
|
markdownExtra.H2WithCheckboxesCollection,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.LastWriteDateTime,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.LineNumber,
|
|
|
|
|
markdownExtra.RequestedDateTime,
|
|
|
|
|
markdownFileAndLines.MarkdownFile.Type);
|
|
|
|
|
links.Add(markdownFile);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return new(results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static MarkdownExtra GetMarkdownExtra(MarkdownFileAndLines markdownFileAndLines)
|
|
|
|
|
{
|
|
|
|
|
MarkdownExtra result;
|
|
|
|
|
int skip;
|
|
|
|
|
Match match;
|
|
|
|
|
string line;
|
|
|
|
|
int completed;
|
|
|
|
|
int notCompleted;
|
|
|
|
|
List<string> lines;
|
|
|
|
|
List<string> assignees = new();
|
|
|
|
|
string? requestedDateTime = null;
|
|
|
|
|
ReadOnlyCollection<Group> groups;
|
|
|
|
|
List<H2HexColor> h2HexColors = new();
|
|
|
|
|
List<H2NoCheckboxes> h2NoCheckboxes = new();
|
|
|
|
|
List<H2WithCheckboxes> h2WithCheckboxes = new();
|
|
|
|
|
if (markdownFileAndLines.MarkdownFile.LineNumber.FrontMatterYamlEnd is not null)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 1; i < markdownFileAndLines.Lines.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
line = markdownFileAndLines.Lines[i];
|
|
|
|
|
if (line.Length < 3)
|
|
|
|
|
continue;
|
|
|
|
|
if (line.Length > 10 && line[..10] == "assigned: ")
|
|
|
|
|
{
|
|
|
|
|
foreach (string item in line[10..].Split(','))
|
|
|
|
|
assignees.Add(item.Trim().Trim('"'));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (line.Length > 11 && line[..11] == "requested: ")
|
|
|
|
|
{
|
|
|
|
|
requestedDateTime = line[10..].Trim().Trim('"');
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (line.Length > 3 && line[0] == '#' && line[1] == '#' && line[2] == ' ')
|
|
|
|
|
{
|
|
|
|
|
completed = 0;
|
|
|
|
|
notCompleted = 0;
|
|
|
|
|
match = HtmlColor().Match(line[3..]);
|
|
|
|
|
if (line.Length > 3 && match.Success)
|
|
|
|
|
{
|
|
|
|
|
groups = match.Groups.AsReadOnly();
|
|
|
|
|
skip = 3 + groups.Skip(1).Sum(l => l.Length);
|
|
|
|
|
h2HexColors.Add(new(line[skip..], $"#{groups.First(l => l.Value.Length == 6)}"));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
lines = new();
|
|
|
|
|
if (i + 1 == markdownFileAndLines.Lines.Length)
|
|
|
|
|
continue;
|
|
|
|
|
for (int j = i + 1; j < markdownFileAndLines.Lines.Length; j++)
|
|
|
|
|
{
|
|
|
|
|
line = markdownFileAndLines.Lines[j];
|
|
|
|
|
if (line.Length == 0)
|
|
|
|
|
continue;
|
|
|
|
|
if (line.Length > 2 && line[0] == '#')
|
|
|
|
|
break;
|
|
|
|
|
lines.Add(line);
|
|
|
|
|
if (line.Length < 5 || line[0] != '-' || line[1] != ' ' || line[2] != '[')
|
|
|
|
|
continue;
|
|
|
|
|
if (line[3] == ' ' && line[4] == ']')
|
|
|
|
|
notCompleted++;
|
|
|
|
|
else if (line[3] is 'x' or 'X' && line[4] == ']')
|
|
|
|
|
completed++;
|
|
|
|
|
}
|
|
|
|
|
if (completed != 0 || notCompleted != 0)
|
|
|
|
|
h2WithCheckboxes.Add(new(completed,
|
|
|
|
|
markdownFileAndLines.Lines[i][3..],
|
|
|
|
|
notCompleted,
|
|
|
|
|
notCompleted + completed));
|
|
|
|
|
else if (lines.Count > 0)
|
|
|
|
|
h2NoCheckboxes.Add(new(markdownFileAndLines.Lines[i][3..], new(lines)));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
result = new(new(assignees), new(h2HexColors), new(h2NoCheckboxes), new(h2WithCheckboxes), requestedDateTime);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static void MarkdownConvertLinksForHugo(AppSettings appSettings, ILogger<Worker> logger, List<string> args)
|
|
|
|
|
{
|
|
|
|
|
Input input = GetInput(args);
|
|
|
|
|
if (string.IsNullOrEmpty(input.Destination))
|
|
|
|
|
throw new NotSupportedException("This method requires frontMatterYamlLines -d path!");
|
|
|
|
|
List<Record> collection = GetWithLinksForHugo(appSettings, input);
|
|
|
|
|
if (!collection.Any())
|
|
|
|
|
if (collection.Count == 0)
|
|
|
|
|
logger.LogInformation("No files?");
|
|
|
|
|
List<string> distinct = GetDistinct(collection);
|
|
|
|
|
CreateMissingDirectories(distinct);
|
|
|
|
|