diff --git a/docs/merge-conflict-accept-all-current.rieks b/docs/merge-conflict-accept-all-current.rieks new file mode 100644 index 0000000000000000000000000000000000000000..0f5bae38f6d73637197d5d592872456835248a65 --- /dev/null +++ b/docs/merge-conflict-accept-all-current.rieks @@ -0,0 +1,19 @@ +// Purpose: resolve all merge conflicts by accepting the CURRENT changes (change $1 to $2 to accept INCOMING changese) + +// This is a script that can be run by the Batch Replacer extension of VSCode . +// Press Ctrl-Shift-P as you are editing this script, then search for `Batch Replacer`, and execute it. + +// If you do not specify the files to work on, the replace will be global (throughout the workspace). +// `filter "document.txt"` - document.txt file in the root folder +// `filter "Documents/document.txt"` - document.txt file in the Documents folder in the root folder +// `filter "**/document.txt"` - document.txt files anywhere +// `filter "*.txt"` - any .txt file in the root folder +// `filter "**/*.txt"` - any .txt file + +filter "docs/**/*.md" + +replace-regex "^<<<<<<<.*\n((?:.*\n)*)=======\n((?:.*\n)*)>>>>>>>.*\n" +// To accept CURRENT changes +with "$1" +// To accept INCOMING changes +// with "$2" diff --git a/docs/terminology-maintenance-script.rieks b/docs/terminology-maintenance-script.rieks index e576c8e919a754b427d40615b606b3a0623c7799..2b55fbe8bcc6ec33db7bed4618c649ffd205ac4e 100644 --- a/docs/terminology-maintenance-script.rieks +++ b/docs/terminology-maintenance-script.rieks @@ -10,7 +10,8 @@ // Now, you have to manually execute /(?<=\|)([A-Z][^%]*)(?=%%)/\L$1/g/ // 4. `|ref-text%% is being checked to see if modifications need to be made (e.g. plurals to singular etc.) // 5. There is a cleanup phase that removes any %%...|...%% syntax from the docusaurus header, markdown headers, and constructs. - +replace-regex "^<<<<<<<.*\n((?:.*\n)*)=======\n((?:.*\n)*)>>>>>>>.*\n" +with "$1" // Complex regular expressions can be created using variables. Variables are applied to the entire script, and should be defined at the beginning of the script. Variables are defined as ... = "..." and are used as %{...}. Variables can only be used in the replace and replace-regex instructions. // variables can reference themselves and be overwritten - see documentation of 'batch replacer' extension diff --git a/docs/terms/guardianship.md b/docs/terms/guardianship.md index 5217a280c2662e370a94eda05dd8f8ec2a0005a4..f590e284bd9d294952e9acc4ed84c797538740c3 100644 --- a/docs/terms/guardianship.md +++ b/docs/terms/guardianship.md @@ -22,6 +22,8 @@ We may use the phrase %%natural guardianship|guardianship%% to refer to an guard The %%Guardianship pattern|pattern-guardianship%% provides an overview of how this concept fits in with related concepts. +The %%Guardianship pattern|pattern-guardianship%% provides an overview of how this concept fits in with related concepts. + ### Purpose **Guardianship** is a means by which %%jurisdictions|jurisdiction%% provide assurances to %%parties|party%% (within its scope) that they can enjoy, dispose of and control in pretty much any way they like. The %%legal system|legal-system%% of the %%jurisdiction|jurisdiction%% specifies these rights, and provides ways in which the %%owner|owner%% can exercize them (that provides the assurance). diff --git a/docs/terms/legal-system.md b/docs/terms/legal-system.md index c46b734dce995efc4fc47732c27aa6342d1b1041..aa3da825faef110a6a187a722e165dabdd23b7ec 100644 --- a/docs/terms/legal-system.md +++ b/docs/terms/legal-system.md @@ -14,6 +14,8 @@ A **Legal System** is a system in which rules are defined ([legislature](https:/ The %%Jurisdictions pattern|pattern-jurisdiction%% provides an overview of how this concept fits in with related concepts. +The %%Jurisdictions pattern|pattern-jurisdiction%% provides an overview of how this concept fits in with related concepts. + ### Purpose The ability to distinguish between (non)legal-systems is a very generic enabler to tell which rules (laws, policies, guidelines, etc.) will apply within its %%scope|scope%%, as well as to evaluate the risks that we run when not complying with the rules. Conversely, the %%party|party%% that operates a legal system may provide additional rules to help mitigate such risks.