Skip to content

5513 nursing internal answer key #368

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

Merged
merged 12 commits into from
May 2, 2024
Merged
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

* Remove `chapter headings (when no solutions) in answer key` in `nursing-internal`
* Bake `injected exercise` with more then one solution
* Move `additive-manufacturing` out of archived recipes and outline test data

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ def bake(book:)
answer_key_chapters = book.search(
'.os-eob[data-type="composite-chapter"] > [data-type="composite-page"]')
answer_key_chapters.each do |container|
container.trash unless container.contains?('[data-type="solution"]')
container.trash unless container.contains?('[data-type="solution"]',
'[data-type="question-solution"]')
end
end
end
Expand Down
1 change: 1 addition & 0 deletions lib/recipes/nursing-internal/recipe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
BakeAppendix.v1(page: page, number: appendix_letter)
end

AnswerKeyCleaner.v1(book: book)
BakeUnitTitle.v1(book: book)
BakeTableColumns.v1(book: book)
BakeIndex.v1(book: book)
Expand Down
Loading
Loading