website/frontend/src/Debate/Arguments/Science/TruncatedMeta.elm
2024-11-16 18:34:05 -06:00

54 lines
No EOL
1.3 KiB
Elm

module Debate.Arguments.Science.TruncatedMeta exposing (..)
import Debate.Types exposing (..)
argumentTruncatedMeta : Argument
argumentTruncatedMeta =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
, propositionSummary = "Summary"
, proofLink = ""
, 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 = "()"
}
]
}