Skip to content

Commit aca3e0a

Browse files
committed
Remove reference to FVD syntax in documentation for the Google module.
1 parent 21f52bb commit aca3e0a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,17 @@ WebFontConfig = {
285285
};
286286
```
287287

288-
Sometimes the font you requested doesn't come in the default variation (e.g. `n4`) and you need to explicitly request the variation you want for font events to work (e.g. `n3`, `n7`, etc.). You can also supply the `text` parameter to perform character subsetting:
288+
Sometimes the font you requested doesn't come in the default weight (e.g. 400) and you need to explicitly request the variation you want for font events to work (e.g. `300`, `700`, etc.):
289+
290+
```javascript
291+
WebFontConfig = {
292+
google: {
293+
families: ['Open Sans Condensed:300,700']
294+
}
295+
};
296+
```
297+
298+
You can also supply the `text` parameter to perform character subsetting:
289299

290300
```javascript
291301
WebFontConfig = {

0 commit comments

Comments
 (0)