website/frontend/src/Debate/Arguments/Template.elm

55 lines
1.3 KiB
Elm
Executable file

module Debate.Arguments.Template exposing (..)
import Debate.Types exposing (..)
argument : Argument
argument =
{ argumentTitle = "Title"
, propositionTitle = "Proposition"
, propositionReductio = ""
, 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 = "()"
}
]
}