We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0830d97 commit d39b9c5Copy full SHA for d39b9c5
src/SIL.Machine/PunctuationAnalysis/ParatextProjectQuoteConventionDetector.cs
@@ -22,6 +22,17 @@ protected ParatextProjectQuoteConventionDetector(ParatextProjectSettingsParserBa
22
_settings = settingsParser.Parse();
23
}
24
25
+ public QuoteConventionAnalysis GetQuoteConventionAnalysis(
26
+ QuoteConventionDetector handler = null,
27
+ Dictionary<string, List<int>> includeChapters = null
28
+ )
29
+ {
30
+ return GetQuoteConventionAnalysis(
31
+ handler,
32
+ includeChapters.ToDictionary(kvp => Canon.BookIdToNumber(kvp.Key), kvp => kvp.Value)
33
+ );
34
+ }
35
+
36
public QuoteConventionAnalysis GetQuoteConventionAnalysis(
37
QuoteConventionDetector handler = null,
38
Dictionary<int, List<int>> includeChapters = null
0 commit comments