feat: Fixes generation of html document, it now builds a latex document in the build directory that it then converts to html. Need to update tests.

This commit is contained in:
2025-11-17 09:38:23 -05:00
parent 8ee4e436aa
commit 045f48348d
3 changed files with 131 additions and 59 deletions

View File

@@ -4,14 +4,14 @@ import Dependencies
import DependenciesMacros
import Foundation
public extension DependencyValues {
extension DependencyValues {
/// Represents interactions with the `pandoc` command line application.
///
/// The `pandoc` command line application is used to generate the final output
/// documents from a home performance assessment project.
///
var pandocClient: PandocClient {
public var pandocClient: PandocClient {
get { self[PandocClient.self] }
set { self[PandocClient.self] = newValue }
}