Xiangqi
Synochess
EmpireChess
+Isardam (type B) : https://echekk.fr/spip.php?page=article&id_article=280
https://www.reddit.com/r/TotemChess/comments/imi3v7/totem_rules/
https://www.chessvariants.com/other.dir/fugue.html
https://www.chessvariants.com/rules/spartan-chess
<script>
import { store } from "@/store";
+import afterRawLoad from "@/utils/afterRawLoad";
export default {
name: "my-about",
computed: {
content: function() {
return (
- require("raw-loader!@/translations/about/" + store.state.lang + ".pug")
- // Next two lines fix a weird issue after last update (2019-11)
- .replace(/\\[n"]/g, " ")
- .replace('module.exports = "', "")
- .replace(/"$/, "")
+ afterRawLoad(
+ require(
+ "raw-loader!@/translations/about/" + store.state.lang + ".pug"
+ ).default
+ )
);
}
}