-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for specifying settings in the URL (#193)
- Loading branch information
1 parent
2541955
commit 130cfde
Showing
3 changed files
with
74 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="InterlinearMode.cs" company="Conglomo"> | ||
// Copyright 2020-2022 Conglomo Limited. Please see LICENSE.md for license details. | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
|
||
namespace GoToBible.Model | ||
{ | ||
using System; | ||
|
||
/// <summary> | ||
/// The interlinear mode. | ||
/// </summary> | ||
[Flags] | ||
public enum InterlinearMode | ||
{ | ||
/// <summary> | ||
/// No special interlinear settings. | ||
/// </summary> | ||
None = 0, | ||
|
||
/// <summary> | ||
/// The interlinear ignores case. | ||
/// </summary> | ||
IgnoresCase = 1, | ||
|
||
/// <summary> | ||
/// The interlinear ignores diacritics. | ||
/// </summary> | ||
IgnoresDiacritics = 2, | ||
|
||
/// <summary> | ||
/// The interlinear ignores punctuation. | ||
/// </summary> | ||
IgnoresPunctuation = 4, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters