website/frontend/src/Config/Pages/Debate/Arguments/Inferences/Template.elm
2024-12-09 23:50:16 -06:00

58 lines
1.4 KiB
Elm
Executable file

module Config.Pages.Debate.Arguments.Inferences.Template exposing (..)
import Config.Pages.Debate.Arguments.Types exposing (..)
argument : Argument
argument =
{ argumentTitle = ""
, propositionTitle = ""
, propositionReductio = ""
, propositionSummary = ""
, proofLink = ""
, argumentCertainty = 1
, argumentImage = ""
, argumentHashtags = []
, definitionTable =
[ { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
, { definiendum = ""
, definiens = ""
}
]
, argumentFormalization =
[ { premises =
[ { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
, { premise = ""
, notation = ""
}
]
, conclusion = ""
, conclusionNotation = ""
}
]
}