Skip to content

Commit

Permalink
Sample files
Browse files Browse the repository at this point in the history
  • Loading branch information
lonekorean committed Apr 14, 2017
1 parent 548e150 commit 3e6ce2a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
22 changes: 22 additions & 0 deletions samples/file.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>

<html>
<head>
<title>Simple HTML File</title>
</head>
<body>
<p>
This is a simple HTML file. All 3 providers will work here.
</p>
<p>
Go ahead, start typing the name of a fruit (basic provider), the word
"super" (intermediate provider), or "@" (advanced provider).
</p>

<!--
Ah, but here's an exception! The advanced provider is specifically disabled
within comments. Go head, type "@" inside this comment and notice that
"@snippet" suggestions won't appear. Others will.
-->
</body>
</html>
6 changes: 6 additions & 0 deletions samples/file.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php
$var1 = 'This is a simple PHP file. Only the basic provider will work here.';
$var2 = 'Go ahead, start typing the name of a fruit (basic).';
$var3 = 'Then try typing the word "super" (intermediate) or "@" (advanced).';
$var4 = 'Notice they won\'t work here.';
?>
4 changes: 4 additions & 0 deletions samples/file.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This is a simple text file. All 3 providers will work here.

Go ahead, start typing the name of a fruit (basic provider), the word "super"
(intermediate provider), or "@" (advanced provider).

0 comments on commit 3e6ce2a

Please sign in to comment.