mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
58 lines
1.4 KiB
Elm
Executable file
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 = ""
|
|
}
|
|
]
|
|
}
|