[gtk-web/new-website: 136/180] updated docs



commit f485bc090d78e8f312ff5d39da5ecb047a53f538
Author: ravgeetdhillon <ravgeetdhillon gmail com>
Date:   Mon Aug 12 22:10:13 2019 +0530

    updated docs

 collections/_docs/javascript.md   | 16 +++++++-------
 collections/_docs/macos.md        | 10 ++++-----
 collections/_docs/mono-develop.md | 44 ++++++++++++++++++++-------------------
 collections/_docs/windows.md      |  2 +-
 4 files changed, 38 insertions(+), 34 deletions(-)
---
diff --git a/collections/_docs/javascript.md b/collections/_docs/javascript.md
index 48f379d..070f549 100644
--- a/collections/_docs/javascript.md
+++ b/collections/_docs/javascript.md
@@ -10,6 +10,7 @@ GJS is a Javascript binding for using GNOME patform libraries in your applicatio
 The current stable series is built on Mozilla's SpiderMonkey 52 featuring ES6 (ECMAScript 2015) and 
GObjectIntrospection making most of the GNOME API library available.
 
 ## GJS API Documentation
+
 There is an official [GJS API Documentation](https://gjs-docs.gnome.org/gtk30~3.24.8/) for using GJS with 
GTK.
 
 There are also a growing number of examples and thorough tests of language features in the test suite.
@@ -19,24 +20,24 @@ There are also a growing number of examples and thorough tests of language featu
 ```javascript
 const Gtk = imports.gi.Gtk;
 const GLib = imports.gi.GLib;
- 
+
 // Initialize the gtk
 Gtk.init(null, 0);
- 
+
 let mwindow = new Gtk.Window({type : Gtk.WindowType.TOPLEVEL});
 let label = new Gtk.Label({label : "Hello World"});
- 
+
 // Set the window title
 mwindow.title = "Hello World!";
 mwindow.connect("destroy", function(){Gtk.main_quit()});
- 
+
 // Add the label
 mwindow.add(label);
- 
+
 // Show the widgets
 label.show();
 mwindow.show();
- 
+
 Gtk.main();
 ```
 
@@ -45,6 +46,7 @@ Gtk.main();
 This code depicts how to use GJS and GTK together for creating a simple Hello World application.
 
 ## GTK Templates in GJS
+
 
[http://www.hadess.net/2014/09/gtk-widget-templates-now-in-javascript.html](http://www.hadess.net/2014/09/gtk-widget-templates-now-in-javascript.html)
 
 ## Contribute
@@ -57,4 +59,4 @@ If you want to get in touch with the original source files, you can visit the pr
 
 * Project: [https://gitlab.gnome.org/GNOME/gjs](https://gitlab.gnome.org/GNOME/gjs)
 * Wikis: [https://gitlab.gnome.org/GNOME/gjs/wikis/Home](https://gitlab.gnome.org/GNOME/gjs/wikis/Home)
-* Docs: [https://gjs-docs.gnome.org/gtk30~3.24.8/](https://gjs-docs.gnome.org/gtk30~3.24.8/)
\ No newline at end of file
+* Docs: [https://gjs-docs.gnome.org/gtk30~3.24.8/](https://gjs-docs.gnome.org/gtk30~3.24.8/)
diff --git a/collections/_docs/macos.md b/collections/_docs/macos.md
index 7ea64f6..29c68d3 100644
--- a/collections/_docs/macos.md
+++ b/collections/_docs/macos.md
@@ -13,10 +13,10 @@ Do you have a favorite GTK application that you'd like to run on your Mac with a
 
 Linking with GTK's [Quartz backend](https://wiki.gnome.org/Projects/GTK/OSX) connects your application to 
the Mac's native display manager, keyboard, and pointing device. With a little extra code and 
[gtk-mac-integration](https://wiki.gnome.org/Projects/GTK/OSX/Integration) you can:
 
-Integrate the Application's menus with the Mac Menubar
-Manipulate your application's dock tile
-Receive open events from Finder
-Find resources in your application bundle
+* **Integrate** the Application's menus with the Mac Menubar.
+* **Manipulate** your application's dock tile.
+* **Receive** open events from Finder.
+* **Find** resources in your application bundle.
 
 ## Requirements
 
@@ -44,4 +44,4 @@ Support for building, bundling, and the integration library is provided by a [ma
 
 ## Contributing
 
-Bugs, patches and enhancements for building, integration, or bundling may be submitted to [Bugzilla, with 
Product=gtk-mac-integration](https://bugzilla.gnome.org/enter_bug.cgi?product=gtk-mac-integration). Bug 
reports on any other package, including GTK itself, should be submitted against that package, not 
gtk-mac-integration; the GTK component for the Quartz backend is "Backend: Quartz".
\ No newline at end of file
+Bugs, patches and enhancements for building, integration, or bundling may be submitted to [Bugzilla, with 
Product=gtk-mac-integration](https://bugzilla.gnome.org/enter_bug.cgi?product=gtk-mac-integration). Bug 
reports on any other package, including GTK itself, should be submitted against that package, not 
gtk-mac-integration; the GTK component for the Quartz backend is "Backend: Quartz".
diff --git a/collections/_docs/mono-develop.md b/collections/_docs/mono-develop.md
index feaccb7..f48ca31 100644
--- a/collections/_docs/mono-develop.md
+++ b/collections/_docs/mono-develop.md
@@ -18,41 +18,43 @@ Visit the [official site for GNOME Builder](https://wiki.gnome.org/Apps/Builder)
 * **Multi-platform**
   Supports Linux, Windows and macOS.
 
-* ### Advanced Text Editing
-Code completion support for C#, code templates, code folding.
+* **Advanced Text Editing**
+  Code completion support for C#, code templates, code folding.
 
-Configurable workbench
-Fully customizable window layouts, user defined key bindings, external tools
+* **Configurable workbench**
+  Fully customizable window layouts, user defined key bindings, external tools
 
-Multiple language support
-C#, F#, Visual Basic .NET, Vala
+* **Multiple language support**
+  C#, F#, Visual Basic .NET, Vala
 
-Integrated Debugger
-For debugging Mono and native applications
+* **Integrated Debugger**
+  For debugging Mono and native applications
 
-GTK# Visual Designer
-Easily build GTK# applications
+* **GTK# Visual Designer**
+  Easily build GTK# applications
 
-ASP.NET
-Create web projects with full code completion support and test on XSP, the Mono web server.
+* **ASP.NET**
+  Create web projects with full code completion support and test on XSP, the Mono web server.
 
-Other tools
-Source control, makefile integration, unit testing, packaging and deployment, localization
+* **Other tools**
+  Source control, makefile integration, unit testing, packaging and deployment, localization
 
-* Search for files, classes, and functions with lightning fast fuzzy search.
-* Explore APIs used by your project with auto-completion for C/C++, Python, Rust, and Vala. For languages 
without native support, ctags integration is provided.
-* Never lose your place in large code bases thanks to Builder's source code map.
+* **Search** for files, classes, and functions with lightning fast fuzzy search.
+* **Explore APIs** used by your project with auto-completion for C/C++, Python, Rust, and Vala. For 
languages without native support, ctags integration is provided.
 
 ## Getting Builder
+
 Builder is available for download through most popular distributions' software centers. Source code can be 
obtained from Builder's git repository. Builder can also be installed and run via 
[Flatpak](https://wiki.gnome.org/Projects/SandboxedApps):
 
-```
-$ flatpak install --from https://flathub.org/repo/appstream/org.gnome.Builder.flatpakref
-$ flatpak run org.gnome.Builder
+```shell
+flatpak install --from https://flathub.org/repo/appstream/org.gnome.Builder.flatpakref
+flatpak run org.gnome.Builder
 ```
 
 ## Getting in Touch
+
 Questions regarding use and development of Builder are welcome though Builder's [IRC 
channel](irc://irc.gnome.org/%23gnome-builder) (`#gnome-builder` at `irc.gnome.org`).
 
 ## Filing a bug
-If you found a problem or have a feature suggestion, feel free to [file a bug at GNOME's bug 
tracker](https://gitlab.gnome.org/GNOME/gnome-builder/issues).
\ No newline at end of file
+
+If you found a problem or have a feature suggestion, feel free to [file a bug at GNOME's bug 
tracker](https://gitlab.gnome.org/GNOME/gnome-builder/issues).
diff --git a/collections/_docs/windows.md b/collections/_docs/windows.md
index b71eab7..31ab7cf 100644
--- a/collections/_docs/windows.md
+++ b/collections/_docs/windows.md
@@ -47,7 +47,7 @@ to the CMake options, where `vcpkg` root is the location where you cloned the `v
 
 ### Building and distributing your application
 
-<div class="alert alert-tertiary">
+<div class="alert alert-success">
 Once you have installed the GTK as above, you should have little problem compiling a GTK app. In order to 
run it successfully, you will also need a GTK theme. There is some old builtin support for a Windows theme in 
GTK, but that makes your app look like a Windows 7 app. It is better to get a Windows 10 theme, for instance 
the [Windows 10 Transformation Pack](https://github.com/B00merang-Project/Windows-10).
 </div>
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]