Open mariusursache opened 9 years ago
Interesting, so this is happening further up the stack.
var ra = require("../lib/ruleClassify.js");
new ra(function(q) {
console.log(q.isQuestion("Really?"));
// true
console.log(q.isQuestion("How are you?"));
// true
});
This is a caee where normalizer is being a little to greedy. Investigating further.
Any updates on this? Also, how can I specify in the editor the answer types, could not get it to work... :-(
From #14:
I think that maybe adding an extra rule that considers any trigger ending in
?
as a question could solve the problem temporarily. So questions are all triggers matching the qtype rules, plus everything ending in?
.