Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Gls and Glspl for capitalized terms #121

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

killercup
Copy link
Contributor

Very simple implementation, just always uppercases the first letter.

Fixes #48

@quachpas quachpas self-assigned this Mar 18, 2025
@quachpas
Copy link
Collaborator

Hello @killercup, I think this is a good start.

If you are willing to improve on this PR, I'll be glad to help you along with it. Otherwise I'll use your commit as a starting point for the feature. I will leave a review

@killercup
Copy link
Contributor Author

Thanks! I'd love to help out but I'm not sure how much time I have to work on this, I mainly just needed this right now and now need to continue writing. If you want to work on this right now, don't stop :) Otherwise I can maybe pick it up over the weekend

Copy link
Collaborator

@quachpas quachpas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, this is good overall.
I would like to add a shortcut in the future for capitalization like it was done for plural forms. This can be done later on.

@quachpas
Copy link
Collaborator

Thanks! I'd love to help out but I'm not sure how much time I have to work on this, I mainly just needed this right now and now need to continue writing. If you want to work on this right now, don't stop :) Otherwise I can maybe pick it up over the weekend

That's alright, I can focus on other things and leave this to you if you're willing. If not, I'll pick it up at some point.

@killercup
Copy link
Contributor Author

killercup commented Mar 19, 2025

Thanks for the feedback! Had some time and I think I managed to apply all of it.

I also wanted to look into generating the matching labels, let's see how that goes :) It went well :)

@killercup killercup requested a review from quachpas March 19, 2025 16:28
Key `ref` now generates `ref:pl`, `Ref`, and `Ref:pl`.

This changes `__get_entry_with_key` to not panic but return `none`, so
we can retry with the lowercase key. All call-sites have been updates
but it's not very pretty.
@killercup killercup force-pushed the feature/capitalize branch from 8849751 to 4a88f76 Compare March 23, 2025 12:19
@quachpas
Copy link
Collaborator

quachpas commented Mar 23, 2025

Thanks for the feedback! Had some time and I think I managed to apply all of it.

I also wanted to look into generating the matching labels, let's see how that goes :) It went well :)

Thank you, I will take a look! It might take a while, but don't worry

@quachpas quachpas added this to the 0.5.5 milestone Mar 29, 2025
@@ -41,6 +41,7 @@
#let __glossary_is_empty = "glossary_is_empty"
#let __entry_has_neither_short_nor_long = "entry_has_neither_short_nor_long"
#let __make_glossary_not_called = "make_glossary_not_called"
#let __capitalize_called_with_content_type = "__capitalize_called_with_content_type"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#let __capitalize_called_with_content_type = "__capitalize_called_with_content_type"
#let __capitalize_called_with_content_type = "capitalize_called_with_content_type"

//
// # Panics
// If the key is not found, it will raise a `key_not_found` error
// The entry of the term or `none`
Copy link
Collaborator

@quachpas quachpas Mar 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert

Suggested change
// The entry of the term or `none`
// The entry of the term
//
// # Panics
// If the key is not found, it will raise a `key_not_found` error

@@ -115,7 +125,7 @@
if key in entries {
return entries.at(key)
} else {
panic(__error_message(key, __key_not_found))
return none
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert

Suggested change
return none
panic(__error_message(key, __key_not_found))

Comment on lines +264 to +266
if entry == none {
panic(__error_message(key, __key_not_found))
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert

@@ -303,6 +335,9 @@
// The link and the entry label
#let agls(key, suffix: none, long: none, update: true) = context {
let entry = __get_entry_with_key(here(), key)
if entry == none {
panic(__error_message(key, __key_not_found))
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert

let default-plural-suffix = "s"
let entry = __get_entry_with_key(here(), key)
if entry == none {
panic(__error_message(key, __key_not_found))
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert

if entry == none {
panic(__error_message(key, __key_not_found))
}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert

Comment on lines +612 to +619
let _key = str(key)
if __get_entry_with_key(position, _key) != none {
return gls(_key, suffix: r.citation.supplement, update: update)
}
let lower_case_key = lower(_key.first()) + _key.slice(1)
if __get_entry_with_key(position, lower_case_key) != none {
return gls(lower_case_key, suffix: r.citation.supplement, update: update, capitalize: true)
}
Copy link
Collaborator

@quachpas quachpas Mar 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
let _key = str(key)
if __get_entry_with_key(position, _key) != none {
return gls(_key, suffix: r.citation.supplement, update: update)
}
let lower_case_key = lower(_key.first()) + _key.slice(1)
if __get_entry_with_key(position, lower_case_key) != none {
return gls(lower_case_key, suffix: r.citation.supplement, update: update, capitalize: true)
}
if is-upper(key) {
// Capitalized ref
return Gls(lower(key), update: update)
} else {
return gls(key, update: update)
}

Comment on lines +621 to +622

panic(__error_message(key, __key_not_found))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove

@@ -807,6 +879,19 @@
kind: __glossarium_figure,
supplement: "",
)[]#label(entry.key + ":pl")
// Same as above, but for capitalized form, e.g., "@Term"
#if upper(entry.key.first()) != entry.key.first() {
Copy link
Collaborator

@quachpas quachpas Mar 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use is-upper

Suggested change
#if upper(entry.key.first()) != entry.key.first() {
#if not is-upper(entry.key) {

Comment on lines +602 to +609
let singular_key = str(key).slice(0, -3)
if __get_entry_with_key(position, singular_key) != none {
return glspl(singular_key, update: update)
}
let lower_case_key = lower(singular_key.first()) + singular_key.slice(1)
if __get_entry_with_key(position, lower_case_key) != none {
return glspl(lower_case_key, update: update, capitalize: true)
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Define above refrule

#let is-upper(key) = upper(key).first() == key.first()
Suggested change
let singular_key = str(key).slice(0, -3)
if __get_entry_with_key(position, singular_key) != none {
return glspl(singular_key, update: update)
}
let lower_case_key = lower(singular_key.first()) + singular_key.slice(1)
if __get_entry_with_key(position, lower_case_key) != none {
return glspl(lower_case_key, update: update, capitalize: true)
}
if is-upper(key.slice(0, -3)) {
// Capitalized ref
return Glspl(lower(key).slice(0, -3), update: update)
} else {
return glspl(key.slice(0, -3), update: update)
}

Copy link
Collaborator

@quachpas quachpas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I love what you've done. It works out pretty well. Just a few nitpicks. I see you were unsure about your solution for __get_entry. I think what I suggest in my comments is better overall. Feel free to take it as it is, or make changes.

I believe only a final review should be necessary to merge this @killercup!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Commands for capitalizing first letter
2 participants