Noah Petherbridge
Noah Petherbridge
Hey @hamidreza01 be sure that UTF-8 mode is enabled and these should parse correctly. The ? command is a special workaround for if you want a "keyword trigger" where it...
Hey @hamidreza01 I think this command may work: ``` ? سلام ``` The `[*]` wildcards surrounding the word aren't necessary, as the `?` command basically provides the functionality that the...
Even so, the periods will be stripped out because of the `unicodePunctuation`. There's a related bug and some discussion about it at https://github.com/aichaos/rivescript-go/issues/31. If somebody wants to come up with...
I think browser support is pretty important to maintain. It's one of the 'best' features I think of the JavaScript version. If I was going to target Node only, then...
It's hard to quantify who's using the browser version of RiveScript for what. I'm using it, though: the Try Online page and the RiveScript Playground both rely on it. I...
Make sure you're loading the `rivescript.js` properly, i.e. with `` on your web page before the time that `new RiveScript();` is called. You might be able to check your browser's...
Hello, This has been a problem affecting the JavaScript version for a while (putting [*] on either side of Unicode text), so a while back I added a work-around command...
I tested some of the other versions (Go, Perl and Python). It seems the Go version has a similar bug, but it works in the Perl and Python versions. I...
Did you call `sortReplies()` before trying `replyAsync()`? It's supposed to catch that and return an error message, but maybe if it slipped through somehow, that could be why it got...
Re: webpack. I have the [async-await](https://github.com/aichaos/rivescript-js/tree/async-await) branch open where I was working on converting RiveScript to use async functions and the `await` keyword. See PR #248 for all the benefits...