Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
OKUMURA Yoshio
Moderator
1 Question, 1 Answer
  Active since 19 April 2019
  Last activity 5 years ago

Reputation

10 + 10 this April 0 1

Badges 1

Eureka!
1 Votes
1 Answers
5K Views
1 Votes 1 Answers 5K Views
syntax highlight c++ int main(void) { return 0; } rust fn main() { println!("Hello World!"); }
5 years ago
1 rust syntax highlight test

syntax highlight はプレビューで表示されないけど、投稿するとちゃんと表示される。

#include 

// Some C++ code. 
int main() try {
	std::cout << "I wonder how the syntax will be highlighted\n";
} catch (std::exception&) {
}
if grep -q $USER script; then
	echo please make independent of username;
fi
5 years ago